Working with strings and dates

Strings and dates
strings
dates
lubridate
stringr
Author

Sean Conway

Published

January 3, 2024

knitr::opts_chunk$set(echo = TRUE)
library(here)
library(readxl)
library(lubridate)
library(tidyverse)

Overview

Working with strings and dates can be tough. So far we have largely glossed over these types of data, but with this demonstration we’ll discuss them in a bit more detail.

Strings

Strings are specific type of data that has quotes around it. If you use the typeof() function on a string, you’ll find R calls it “character” data - this synonymous with the word “string”.

typeof("abc")
[1] "character"

Today, we’ll be primarily discussing how to work with strings via the stringr package, but note that base R has functions to work with strings as well, such as grep() and grepl().

stringr

stringr has functions for doing almost anything you could ever need to do with strings. All of these functions start with str_ , and there are a number of them - too many to demonstrate in one lecture. I strongly recommend bookmarking the stringr cheatsheet - I use it all the time, myself.

To demonstrate, we’ll be using the snl data. These data came to my attention courtesy of Jeremy Singer-Vine’s wonderful Data is Plural newsletter. These datasets, archived by Joel Navaroli and scraped by Hendrik Hilleckes and Colin Morris, contain data about the actors, cast, seasons, etc. from every season of Saturday Night Live from its inception through 2020. We will be working with the data file snl_actors.csv.

snl <- here("posts","_data","snl_actors.csv") %>%
  read_csv()
Rows: 2306 Columns: 4
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr (4): aid, url, type, gender

ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
snl

This dataset contains four variables: aid - actor ID, url - part of the url from the web scraping process, type - whether the actor is part of the cast/guest/crew/unknown, and gender. We’re just going to focus on aid and type.

snl_1 <- snl %>%
  select(aid,type)
snl_1

Say we wanted to filter the data as to only include cast members. We could use the == operator:

snl_1 %>%
  filter(type=="cast")

It’s far better practice to use the str_detect() function to filter our data to only include these types of data.

snl_1 %>%
  filter(str_detect(type,"cast"))

We first passed the variable str_detect() was to search in (type), and then we passed the string it was to search for ("type"). Behind the scenes, str_detect() returned a TRUE value for every row that contained the string "cast" in the type column and a FALSE otherwise. We can confirm this ourselves:

str_detect(snl_1$type,"cast")
   [1]  TRUE  TRUE  TRUE  TRUE  TRUE FALSE FALSE  TRUE FALSE  TRUE  TRUE  TRUE
  [13] FALSE FALSE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
  [25]  TRUE FALSE FALSE  TRUE  TRUE  TRUE FALSE FALSE  TRUE  TRUE FALSE FALSE
  [37] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE
  [49] FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
  [61] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
  [73]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
  [85] FALSE  TRUE  TRUE  TRUE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
  [97] FALSE FALSE  TRUE  TRUE  TRUE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
 [109] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE  TRUE
 [121]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE
 [133] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [145] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [157] FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [169] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [181] FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE
 [193] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [205] FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [217]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [229] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE
 [241] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [253] FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE
 [265] FALSE  TRUE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE
 [277]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [289] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [301] FALSE FALSE FALSE FALSE  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE
 [313] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [325] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE
 [337] FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
 [349] FALSE  TRUE  TRUE  TRUE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE
 [361]  TRUE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
 [373] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [385] FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [397] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [409] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE
 [421] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [433] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [445] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [457]  TRUE FALSE FALSE FALSE FALSE  TRUE  TRUE  TRUE FALSE FALSE FALSE FALSE
 [469] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [481] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [493] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE
 [505] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [517]  TRUE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
 [529] FALSE FALSE FALSE FALSE  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE
 [541] FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE
 [553] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE
 [565] FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE
 [577] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [589] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [601] FALSE FALSE FALSE  TRUE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
 [613] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [625] FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
 [637] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [649] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [661] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE
 [673] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [685] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [697] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE
 [709]  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [721] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [733] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [745] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [757] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [769] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [781] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [793] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [805] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [817] FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE
 [829] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [841] FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [853] FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
 [865] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [877] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [889] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [901] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [913] FALSE  TRUE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
 [925] FALSE FALSE FALSE FALSE  TRUE FALSE  TRUE  TRUE FALSE FALSE FALSE FALSE
 [937] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [949] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [961] FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [973] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [985] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 [997] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1009] FALSE  TRUE FALSE  TRUE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE
[1021] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1033] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1045] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1057] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE
[1069] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1081] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1093] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1105] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1117] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1129] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1141] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1153] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1165]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1177] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE
[1189] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1201] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1213] FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE  TRUE FALSE
[1225] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1237] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1249] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1261] FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE
[1273] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1285] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1297] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1309] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1321] FALSE FALSE FALSE FALSE FALSE  TRUE FALSE  TRUE  TRUE  TRUE FALSE FALSE
[1333] FALSE  TRUE FALSE  TRUE FALSE FALSE FALSE  TRUE  TRUE FALSE FALSE FALSE
[1345] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1357] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1369] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1381] FALSE FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE FALSE FALSE  TRUE FALSE
[1393] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1405] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1417] FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
[1429] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1441] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1453] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1465] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1477]  TRUE  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1489] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1501] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1513]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE
[1525] FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1537] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1549] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE
[1561] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1573] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1585] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1597] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1609] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1621] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1633] FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1645] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1657] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1669] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1681] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1693] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1705] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1717] FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE  TRUE FALSE  TRUE FALSE FALSE
[1729] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1741] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE
[1753] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1765] FALSE  TRUE FALSE  TRUE  TRUE  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE
[1777] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1789] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1801] FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE
[1813] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1825] FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1837] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE  TRUE
[1849]  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1861] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1873] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1885] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1897] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1909] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1921] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1933] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE
[1945] FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1957] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1969] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[1981] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE
[1993] FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE  TRUE FALSE
[2005]  TRUE  TRUE  TRUE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE
[2017] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2029] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2041] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE FALSE  TRUE
[2053] FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2065] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2077] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2089] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2101] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2113] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2125] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE
[2137] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2149] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2161] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2173] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2185] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2197] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2209] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2221] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2233] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2245] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2257] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2269] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2281] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2293] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[2305] FALSE FALSE

filter() then only kept those rows where str_detect() returned TRUE.

What if we wanted to filter our data to include both cast and guests? We could run something like this:

snl_1 %>%
  filter(type=="cast"|type=="guest")

However, stringr has a better way, using the | (or) operator:

snl_1 %>%
  filter(str_detect(type,"cast|guest"))

Here a few other uses of stringr:

  • splitting a string into multiple:
str_split(snl_1$aid, " ", n=2) #get actor first/last names
[[1]]
[1] "Kate"     "McKinnon"

[[2]]
[1] "Alex"   "Moffat"

[[3]]
[1] "Ego"    "Nwodim"

[[4]]
[1] "Chris" "Redd" 

[[5]]
[1] "Kenan"    "Thompson"

[[6]]
[1] "Carey"    "Mulligan"

[[7]]
[1] "Marcus"  "Mumford"

[[8]]
[1] "Aidy"   "Bryant"

[[9]]
[1] "Steve"   "Higgins"

[[10]]
[1] "Mikey" "Day"  

[[11]]
[1] "Heidi"   "Gardner"

[[12]]
[1] "Lauren" "Holt"  

[[13]]
[1] "Kid"  "Cudi"

[[14]]
[1] "Timothee" "Chalamet"

[[15]]
[1] "Pete"     "Davidson"

[[16]]
[1] "Chloe"   "Fineman"

[[17]]
[1] "Darrell" "Hammond"

[[18]]
[1] "Colin" "Jost" 

[[19]]
[1] "Michael" "Che"    

[[20]]
[1] "Beck"    "Bennett"

[[21]]
[1] "Punkie"  "Johnson"

[[22]]
[1] "Bowen" "Yang" 

[[23]]
[1] "Andrew"   "Dismukes"

[[24]]
[1] "Kyle"   "Mooney"

[[25]]
[1] "Cecily" "Strong"

[[26]]
[1] "Daniel"  "Kaluuya"

[[27]]
[1] "St."     "Vincent"

[[28]]
[1] "Maya"    "Rudolph"

[[29]]
[1] "Melissa"    "Villasenor"

[[30]]
[1] "Martin" "Short" 

[[31]]
[1] "Jack"   "Harlow"

[[32]]
[1] "Adam"   "Levine"

[[33]]
[1] "Rachel" "Dratch"

[[34]]
[1] "Tina" "Fey" 

[[35]]
[1] "Nick"  "Jonas"

[[36]]
[1] "Kevin" "Jonas"

[[37]]
[1] "Rege-Jean" "Page"     

[[38]]
[1] "Bad"   "Bunny"

[[39]]
[1] "Rosalia"

[[40]]
[1] "Regina" "King"  

[[41]]
[1] "Nathaniel" "Rateliff" 

[[42]]
[1] "The"          "Night Sweats"

[[43]]
[1] "Dan"  "Levy"

[[44]]
[1] "Eugene" "Levy"  

[[45]]
[1] "Phoebe"   "Bridgers"

[[46]]
[1] "John"      "Krasinski"

[[47]]
[1] "Machine"   "Gun Kelly"

[[48]]
[1] "Kristen" "Wiig"   

[[49]]
[1] "Dua"  "Lipa"

[[50]]
[1] "Nicole"  "Flender"

[[51]]
[1] "Jimmy"  "Fallon"

[[52]]
[1] "Bruce"                           "Springsteen & The E Street Band"

[[53]]
[1] "Questlove"

[[54]]
[1] "Jason"   "Bateman"

[[55]]
[1] "Eminem"

[[56]]
[1] "Morgan" "Wallen"

[[57]]
[1] "Alec"    "Baldwin"

[[58]]
[1] "Jim"    "Carrey"

[[59]]
[1] "Dave"      "Chappelle"

[[60]]
[1] "Foo"      "Fighters"

[[61]]
[1] "John"    "Mulaney"

[[62]]
[1] "The"     "Strokes"

[[63]]
[1] "Adele"

[[64]]
[1] "H.E.R."

[[65]]
[1] "Issa" "Rae" 

[[66]]
[1] "Justin" "Bieber"

[[67]]
[1] "Chance"     "the Rapper"

[[68]]
[1] "Benny"  "Blanco"

[[69]]
[1] "Bill" "Burr"

[[70]]
[1] "Jason" "Momoa"

[[71]]
[1] "Jack"  "White"

[[72]]
[1] "Harry"  "Styles"

[[73]]
[1] "Chris" "Rock" 

[[74]]
[1] "Megan"         "Thee Stallion"

[[75]]
[1] "Young" "Thug" 

[[76]]
[1] "Gary"       "Richardson"

[[77]]
[1] "Amy"      "Davidson"

[[78]]
[1] "Josh" "Gad" 

[[79]]
[1] "Bryan"  "Tucker"

[[80]]
[1] "Danny" "Trejo"

[[81]]
[1] "Babyface"

[[82]]
[1] "Boyz"   "II Men"

[[83]]
[1] "Brad" "Pitt"

[[84]]
[1] "Charles" "Barkley"

[[85]]
[1] "DJ"     "Khaled"

[[86]]
[1] "Fred"    "Armisen"

[[87]]
[1] "Jason"    "Sudeikis"

[[88]]
[1] "Adam"    "Sandler"

[[89]]
[1] "Casey"    "Davidson"

[[90]]
[1] "Jackie"  "Sandler"

[[91]]
[1] "Rob"       "Schneider"

[[92]]
[1] "Sadie"   "Sandler"

[[93]]
[1] "Sunny"   "Sandler"

[[94]]
[1] "Miley" "Cyrus"

[[95]]
[1] "Paul" "Rudd"

[[96]]
[1] "Tom"   "Hanks"

[[97]]
[1] "Larry" "David"

[[98]]
[1] "Chris"  "Martin"

[[99]]
[1] "Amy"     "Poehler"

[[100]]
[1] "Ana"      "Gasteyer"

[[101]]
[1] "Bill"  "Hader"

[[102]]
[1] "Emily"  "Spivey"

[[103]]
[1] "Molly"   "Shannon"

[[104]]
[1] "Paula" "Pell" 

[[105]]
[1] "Hal"     "Willner"

[[106]]
[1] "Elizabeth" "Warren"   

[[107]]
[1] "Daniel" "Craig" 

[[108]]
[1] "The"    "Weeknd"

[[109]]
[1] "Justin"  "Theroux"

[[110]]
[1] "Lorne"    "Michaels"

[[111]]
[1] "David" "Byrne"

[[112]]
[1] "Jake"       "Gyllenhaal"

[[113]]
[1] "RuPaul"

[[114]]
[1] "Quavo"

[[115]]
[1] "J.J." "Watt"

[[116]]
[1] "Luke"  "Combs"

[[117]]
[1] "Adam"   "Driver"

[[118]]
[1] "Jon"    "Lovitz"

[[119]]
[1] "Halsey"

[[120]]
[1] "Eddie"  "Murphy"

[[121]]
[1] "Tracy"  "Morgan"

[[122]]
[1] "Lizzo"

[[123]]
[1] "Usher"

[[124]]
[1] "Scarlett"  "Johansson"

[[125]]
[1] "Niall" "Horan"

[[126]]
[1] "James"  "Corden"

[[127]]
[1] "Jennifer" "Lopez"   

[[128]]
[1] "The"       "Rockettes"

[[129]]
[1] "Alex"      "Rodriguez"

[[130]]
[1] "DaBaby"

[[131]]
[1] "Jabbawockeez"

[[132]]
[1] "Will"    "Ferrell"

[[133]]
[1] "Ryan"     "Reynolds"

[[134]]
[1] "Woody"     "Harrelson"

[[135]]
[1] "King"     "Princess"

[[136]]
[1] "Jon"  "Hamm"

[[137]]
[1] "Bill"    "Corsair"

[[138]]
[1] "Kristen" "Stewart"

[[139]]
[1] "Coldplay"

[[140]]
[1] "Billy"  "Porter"

[[141]]
[1] "Lin-Manuel" "Miranda"   

[[142]]
[1] "David"   "Harbour"

[[143]]
[1] "Camila"  "Cabello"

[[144]]
[1] "Matthew"   "Broderick"

[[145]]
[1] "Phoebe"        "Waller-Bridge"

[[146]]
[1] "Taylor" "Swift" 

[[147]]
[1] "Lenny"   "Pickett"

[[148]]
[1] "Liev"      "Schreiber"

[[149]]
[1] "Billie" "Eilish"

[[150]]
[1] "Finneas"

[[151]]
[1] "Robert" "DeNiro"

[[152]]
[1] "Jacob"    "Anderson"

[[153]]
[1] "Jane"  "Fonda"

[[154]]
[1] "Lily"   "Tomlin"

[[155]]
[1] "Big"  "Sean"

[[156]]
[1] "J"      "Balvin"

[[157]]
[1] "Jeremih"

[[158]]
[1] "Lil"  "Baby"

[[159]]
[1] "Lil"   "Wayne"

[[160]]
[1] "Meek" "Mill"

[[161]]
[1] "Leslie" "Jones" 

[[162]]
[1] "John"   "Legend"

[[163]]
[1] "Sza"

[[164]]
[1] "Emma"     "Thompson"

[[165]]
[1] "Jonas"    "Brothers"

[[166]]
[1] "Shawn"  "Mendes"

[[167]]
[1] "Allen"  "Covert"

[[168]]
[1] "Michael" "Keaton" 

[[169]]
[1] "Emma"  "Stone"

[[170]]
[1] "Gena"     "Rositano"

[[171]]
[1] "BTS"

[[172]]
[1] "Pablo"  "Thomas"

[[173]]
[1] "Ty"       "Mitchell"

[[174]]
[1] "Kit"       "Harington"

[[175]]
[1] "Emilia" "Clarke"

[[176]]
[1] "John"    "Bradley"

[[177]]
[1] "Rose"   "Leslie"

[[178]]
[1] "Ice-T"

[[179]]
[1] "Mariska"  "Hargitay"

[[180]]
[1] "Sara"      "Bareilles"

[[181]]
[1] "Sandra" "Oh"    

[[182]]
[1] "Tame"   "Impala"

[[183]]
[1] "Idris" "Elba" 

[[184]]
[1] "Khalid"

[[185]]
[1] "Gwyneth" "Paltrow"

[[186]]
[1] "Ben"     "Stiller"

[[187]]
[1] "Thomas" "Rhett" 

[[188]]
[1] "Don"     "Cheadle"

[[189]]
[1] "Gary"      "Clark Jr."

[[190]]
[1] "Steve"  "Martin"

[[191]]
[1] "James"  "McAvoy"

[[192]]
[1] "Fabolous"

[[193]]
[1] "Rachel"    "Brosnahan"

[[194]]
[1] "Greta"     "Van Fleet"

[[195]]
[1] "Matt"  "Damon"

[[196]]
[1] "Mark"   "Ronson"

[[197]]
[1] "Sean"   "Lennon"

[[198]]
[1] "Mumford" "& Sons" 

[[199]]
[1] "Claire" "Foy"   

[[200]]
[1] "Anderson" ".Paak"   

[[201]]
[1] "Kendrick" "Lamar"   

[[202]]
[1] "Steve"  "Carell"

[[203]]
[1] "Annie"  "Carell"

[[204]]
[1] "Ed"    "Helms"

[[205]]
[1] "Ellie"  "Kemper"

[[206]]
[1] "Jenna"   "Fischer"

[[207]]
[1] "Johnny" "Carell"

[[208]]
[1] "Nancy" "Walls"

[[209]]
[1] "Ella" "Mai" 

[[210]]
[1] "Future"

[[211]]
[1] "Dan"      "Crenshaw"

[[212]]
[1] "Swizz" "Beatz"

[[213]]
[1] "Jonah" "Hill" 

[[214]]
[1] "Candice" "Bergen" 

[[215]]
[1] "Drew"      "Barrymore"

[[216]]
[1] "Maggie" "Rogers"

[[217]]
[1] "Seth"   "Meyers"

[[218]]
[1] "Paul"  "Simon"

[[219]]
[1] "yMusic"

[[220]]
[1] "Al"   "Gore"

[[221]]
[1] "Awkwafina"

[[222]]
[1] "Travis" "Scott" 

[[223]]
[1] "John"  "Mayer"

[[224]]
[1] "Kevin"  "Parker"

[[225]]
[1] "Wendy"    "Williams"

[[226]]
[1] "Kanye" "West" 

[[227]]
[1] "Lil"  "Pump"

[[228]]
[1] "Adele"  "Givens"

[[229]]
[1] "Teyana" "Taylor"

[[230]]
[1] "070"   "Shake"

[[231]]
[1] "Anne"     "Hathaway"

[[232]]
[1] "Benedict"    "Cumberbatch"

[[233]]
[1] "Donald" "Glover"

[[234]]
[1] "Jerry"    "Seinfeld"

[[235]]
[1] "Casey"    "Nicholaw"

[[236]]
[1] "Jeff"     "Richmond"

[[237]]
[1] "Nicki" "Minaj"

[[238]]
[1] "Luke" "Null"

[[239]]
[1] "John"    "Goodman"

[[240]]
[1] "Playboi" "Carti"  

[[241]]
[1] "Cindy" "Null" 

[[242]]
[1] "Elizabeth" "Thompson" 

[[243]]
[1] "Georganne" "Bryant"   

[[244]]
[1] "Kerry" "Kelly"

[[245]]
[1] "Linda"  "Mooney"

[[246]]
[1] "Lupe"       "Villasenor"

[[247]]
[1] "Margaret" "Redd"    

[[248]]
[1] "Sarah"   "Bennett"

[[249]]
[1] "Sylvia" "Day"   

[[250]]
[1] "Amy"     "Schumer"

[[251]]
[1] "Kacey"     "Musgraves"

[[252]]
[1] "Melissa"  "McCarthy"

[[253]]
[1] "Stormy"  "Daniels"

[[254]]
[1] "Stacey" "Foster"

[[255]]
[1] "A$AP"  "Rocky"

[[256]]
[1] "Childish" "Gambino" 

[[257]]
[1] "Zoe"     "Kravitz"

[[258]]
[1] "Nasim"  "Pedrad"

[[259]]
[1] "Chadwick" "Boseman" 

[[260]]
[1] "Cardi" "B"    

[[261]]
[1] "Sudi"  "Green"

[[262]]
[1] "Donna"    "Richards"

[[263]]
[1] "Arcade" "Fire"  

[[264]]
[1] "Sterling" "K. Brown"

[[265]]
[1] "James" "Bay"  

[[266]]
[1] "Vanessa" "Bayer"  

[[267]]
[1] "Migos"

[[268]]
[1] "Hilary" "Knight"

[[269]]
[1] "Natalie" "Portman"

[[270]]
[1] "Andy"    "Samberg"

[[271]]
[1] "Chris"     "Stapleton"

[[272]]
[1] "Sturgill" "Simpson" 

[[273]]
[1] "Jessica"  "Chastain"

[[274]]
[1] "Method" "Man"   

[[275]]
[1] "Akira"     "Yoshimura"

[[276]]
[1] "Troye" "Sivan"

[[277]]
[1] "Bill"   "Murray"

[[278]]
[1] "Sam"      "Rockwell"

[[279]]
[1] "Stanley" "Tucci"  

[[280]]
[1] "G-Eazy"

[[281]]
[1] "Kevin" "Hart" 

[[282]]
[1] "James"  "Franco"

[[283]]
[1] "Seth"  "Rogen"

[[284]]
[1] "Dave"   "Franco"

[[285]]
[1] "Saoirse" "Ronan"  

[[286]]
[1] "Greta"  "Gerwig"

[[287]]
[1] "U2"

[[288]]
[1] "John"    "McEnroe"

[[289]]
[1] "Skylar" "Grey"  

[[290]]
[1] "Common"

[[291]]
[1] "Tiffany" "Haddish"

[[292]]
[1] "Liam"      "Hemsworth"

[[293]]
[1] "George"   "Springer"

[[294]]
[1] "Alex"    "Bregman"

[[295]]
[1] "Jose"   "Altuve"

[[296]]
[1] "Kumail"   "Nanjiani"

[[297]]
[1] "Pink"

[[298]]
[1] "Jason"  "Aldean"

[[299]]
[1] "Gal"   "Gadot"

[[300]]
[1] "Sam"   "Smith"

[[301]]
[1] "Ryan"    "Gosling"

[[302]]
[1] "Jay-Z"

[[303]]
[1] "Damian" "Marley"

[[304]]
[1] "Dwayne"  "Johnson"

[[305]]
[1] "Sasheer" "Zamata" 

[[306]]
[1] "Bobby"    "Moynihan"

[[307]]
[1] "Katy"  "Perry"

[[308]]
[1] "HAIM"

[[309]]
[1] "Blake"  "Lively"

[[310]]
[1] "Ken"    "Aymong"

[[311]]
[1] "Chris" "Pine" 

[[312]]
[1] "LCD"         "Soundsystem"

[[313]]
[1] "Nile"    "Rodgers"

[[314]]
[1] "Louis" "C.K." 

[[315]]
[1] "The"          "Chainsmokers"

[[316]]
[1] "Emily"  "Warren"

[[317]]
[1] "Lorde"

[[318]]
[1] "Jack"     "Antonoff"

[[319]]
[1] "Octavia" "Spencer"

[[320]]
[1] "Father"     "John Misty"

[[321]]
[1] "Ed"      "Sheeran"

[[322]]
[1] "Alessia" "Cara"   

[[323]]
[1] "Aziz"   "Ansari"

[[324]]
[1] "Felicity" "Jones"   

[[325]]
[1] "Casey"   "Affleck"

[[326]]
[1] "Darryl"    "McDaniels"

[[327]]
[1] "Danielle" "Flora"   

[[328]]
[1] "Noname"

[[329]]
[1] "Bryan"    "Cranston"

[[330]]
[1] "John" "Cena"

[[331]]
[1] "Maren"  "Morris"

[[332]]
[1] "Jennifer" "Aniston" 

[[333]]
[1] "Will"  "Forte"

[[334]]
[1] "The" "xx" 

[[335]]
[1] "Donnell"  "Rawlings"

[[336]]
[1] "A"                  "Tribe Called Quest"

[[337]]
[1] "Busta"  "Rhymes"

[[338]]
[1] "Consequence"

[[339]]
[1] "Anthony" "Rizzo"  

[[340]]
[1] "David" "Ross" 

[[341]]
[1] "Dexter" "Fowler"

[[342]]
[1] "Solange"

[[343]]
[1] "Dana"   "Carvey"

[[344]]
[1] "Sampha"

[[345]]
[1] "Lady" "Gaga"

[[346]]
[1] "Emily" "Blunt"

[[347]]
[1] "Bruno" "Mars" 

[[348]]
[1] "Twenty"     "One Pilots"

[[349]]
[1] "Margot" "Robbie"

[[350]]
[1] "Taran"  "Killam"

[[351]]
[1] "Jay"     "Pharoah"

[[352]]
[1] "Jon"       "Rudnitsky"

[[353]]
[1] "Courtney" "Barnett" 

[[354]]
[1] "Carrie"     "Brownstein"

[[355]]
[1] "Drake"

[[356]]
[1] "Phil"    "Hartman"

[[357]]
[1] "Brie"   "Larson"

[[358]]
[1] "Heather"     "Desaulniers"

[[359]]
[1] "Laura"    "Campbell"

[[360]]
[1] "Alicia" "Keys"  

[[361]]
[1] "Julia"         "Louis-Dreyfus"

[[362]]
[1] "Tony" "Hale"

[[363]]
[1] "Tove" "Lo"  

[[364]]
[1] "Russell" "Crowe"  

[[365]]
[1] "Al"       "Sharpton"

[[366]]
[1] "Margo" "Price"

[[367]]
[1] "Mike"    "O'Brien"

[[368]]
[1] "Peter"    "Dinklage"

[[369]]
[1] "Gwen"    "Stefani"

[[370]]
[1] "Ariana" "Grande"

[[371]]
[1] "El"      "DeBarge"

[[372]]
[1] "Kelly" "Price"

[[373]]
[1] "Kirk"     "Franklin"

[[374]]
[1] "The-Dream"

[[375]]
[1] "Von"    "Miller"

[[376]]
[1] "Al"    "Roker"

[[377]]
[1] "Dylan"  "Dreyer"

[[378]]
[1] "Natalie" "Morales"

[[379]]
[1] "Bernie"  "Sanders"

[[380]]
[1] "The"  "1975"

[[381]]
[1] "Owen"   "Wilson"

[[382]]
[1] "Ronda"  "Rousey"

[[383]]
[1] "Selena" "Gomez" 

[[384]]
[1] "Wally"    "Feresten"

[[385]]
[1] "Gayle" "King" 

[[386]]
[1] "Paul"      "McCartney"

[[387]]
[1] "Chris"     "Hemsworth"

[[388]]
[1] "Mike"  "Myers"

[[389]]
[1] "Leon"    "Bridges"

[[390]]
[1] "Matthew"     "McConaughey"

[[391]]
[1] "Daisy"  "Ridley"

[[392]]
[1] "J.J."   "Abrams"

[[393]]
[1] "John"   "Boyega"

[[394]]
[1] "Michael" "Buble"  

[[395]]
[1] "Elizabeth" "Banks"    

[[396]]
[1] "Don"      "Roy King"

[[397]]
[1] "Disclosure"

[[398]]
[1] "Donald" "Trump" 

[[399]]
[1] "Ivanka" "Trump" 

[[400]]
[1] "Sia"

[[401]]
[1] "Jack"     "McBrayer"

[[402]]
[1] "Jane"      "Krakowski"

[[403]]
[1] "Demi"   "Lovato"

[[404]]
[1] "Hillary" "Clinton"

[[405]]
[1] "The"          "Flaming Lips"

[[406]]
[1] "Rihanna"

[[407]]
[1] "Reese"       "Witherspoon"

[[408]]
[1] "Betty"       "Witherspoon"

[[409]]
[1] "Carolyn" "Bayer"  

[[410]]
[1] "Ivory"   "Steward"

[[411]]
[1] "Julie"    "Moynihan"

[[412]]
[1] "Penny"  "Strong"

[[413]]
[1] "Ramona" "Farrow"

[[414]]
[1] "Florence"      "+ The Machine"

[[415]]
[1] "Wiz"     "Khalifa"

[[416]]
[1] "Charlie" "Puth"   

[[417]]
[1] "Taraji"    "P. Henson"

[[418]]
[1] "Nikolaj"       "Coster-Waldau"

[[419]]
[1] "Billy"   "Crystal"

[[420]]
[1] "Jim"              "Henson's Muppets"

[[421]]
[1] "Carly"      "Rae Jepsen"

[[422]]
[1] "Norman" "Reedus"

[[423]]
[1] "George" "Ezra"  

[[424]]
[1] "Luke"      "Hemsworth"

[[425]]
[1] "Zac"        "Brown Band"

[[426]]
[1] "Chris"   "Cornell"

[[427]]
[1] "Dakota"  "Johnson"

[[428]]
[1] "Don"     "Johnson"

[[429]]
[1] "Melanie"  "Griffith"

[[430]]
[1] "Alabama" "Shakes" 

[[431]]
[1] "J.K."    "Simmons"

[[432]]
[1] "D'Angelo"

[[433]]
[1] "Blake"   "Shelton"

[[434]]
[1] "Kent"     "Sublette"

[[435]]
[1] "Amy"   "Adams"

[[436]]
[1] "Liam"  "Payne"

[[437]]
[1] "Louis"     "Tomlinson"

[[438]]
[1] "Zayn"  "Malik"

[[439]]
[1] "One"       "Direction"

[[440]]
[1] "Martin"  "Freeman"

[[441]]
[1] "Charli" "XCX"   

[[442]]
[1] "Cameron" "Diaz"   

[[443]]
[1] "Mystikal"

[[444]]
[1] "Jennifer" "Lawrence"

[[445]]
[1] "Josh"       "Hutcherson"

[[446]]
[1] "Uzo"   "Aduba"

[[447]]
[1] "Chantal"   "Kreviazuk"

[[448]]
[1] "Jay"  "Rock"

[[449]]
[1] "Prince"

[[450]]
[1] "3RDEYEGIRL"

[[451]]
[1] "Jeff"    "Daniels"

[[452]]
[1] "Iggy"   "Azalea"

[[453]]
[1] "Rita" "Ora" 

[[454]]
[1] "MO"

[[455]]
[1] "Harvey"    "Fierstein"

[[456]]
[1] "Hozier"

[[457]]
[1] "Sarah"     "Silverman"

[[458]]
[1] "Maroon" "5"     

[[459]]
[1] "Chris" "Pratt"

[[460]]
[1] "Anna"  "Faris"

[[461]]
[1] "Lil" "Jon"

[[462]]
[1] "John"     "Milhiser"

[[463]]
[1] "Noel"  "Wells"

[[464]]
[1] "Brooks"  "Wheelan"

[[465]]
[1] "Don"   "Pardo"

[[466]]
[1] "Pharrell" "Williams"

[[467]]
[1] "Tatiana" "Maslany"

[[468]]
[1] "Akiva"    "Schaffer"

[[469]]
[1] "Jorma"   "Taccone"

[[470]]
[1] "2"      "Chainz"

[[471]]
[1] "Charlize" "Theron"  

[[472]]
[1] "The"        "Black Keys"

[[473]]
[1] "Barbara" "Walters"

[[474]]
[1] "Andrew"   "Garfield"

[[475]]
[1] "Kiefer"     "Sutherland"

[[476]]
[1] "Mary"         "Lynn Rajskub"

[[477]]
[1] "Zooey"     "Deschanel"

[[478]]
[1] "Anna"     "Kendrick"

[[479]]
[1] "Icona" "Pop"  

[[480]]
[1] "Hans"   "Zimmer"

[[481]]
[1] "Liam"   "Neeson"

[[482]]
[1] "Lena"   "Dunham"

[[483]]
[1] "The"      "National"

[[484]]
[1] "Jim"     "Parsons"

[[485]]
[1] "Beck"

[[486]]
[1] "James"    "Anderson"

[[487]]
[1] "Imagine" "Dragons"

[[488]]
[1] "Leonardo" "DiCaprio"

[[489]]
[1] "Bastille"

[[490]]
[1] "Michael" "Cera"   

[[491]]
[1] "Jhene" "Aiko" 

[[492]]
[1] "Justin"     "Timberlake"

[[493]]
[1] "Barry" "Gibb" 

[[494]]
[1] "Madonna"

[[495]]
[1] "Michael"   "Bloomberg"

[[496]]
[1] "Caleb"     "Followill"

[[497]]
[1] "Jared"     "Followill"

[[498]]
[1] "Matthew"   "Followill"

[[499]]
[1] "Nathan"    "Followill"

[[500]]
[1] "Sylvester" "Stallone" 

[[501]]
[1] "Kings"   "of Leon"

[[502]]
[1] "Wale"

[[503]]
[1] "David"    "Koechner"

[[504]]
[1] "R."    "Kelly"

[[505]]
[1] "Kerry"      "Washington"

[[506]]
[1] "Rick"  "Rubin"

[[507]]
[1] "Edward" "Norton"

[[508]]
[1] "Janelle" "Monae"  

[[509]]
[1] "Bruce"  "Willis"

[[510]]
[1] "Aaron" "Paul" 

[[511]]
[1] "Regine"    "Chassagne"

[[512]]
[1] "William" "Butler" 

[[513]]
[1] "Win"    "Butler"

[[514]]
[1] "Ben"     "Affleck"

[[515]]
[1] "Jennifer" "Garner"  

[[516]]
[1] "Anderson" "Cooper"  

[[517]]
[1] "Tim"      "Robinson"

[[518]]
[1] "Aimee" "Mann" 

[[519]]
[1] "J."     "Mascis"

[[520]]
[1] "Kim"    "Gordon"

[[521]]
[1] "Michael" "Penn"   

[[522]]
[1] "Steve" "Jones"

[[523]]
[1] "Jim"    "Downey"

[[524]]
[1] "John"    "Solomon"

[[525]]
[1] "Vampire" "Weekend"

[[526]]
[1] "Zach"         "Galifianakis"

[[527]]
[1] "Bradley" "Cooper" 

[[528]]
[1] "Of"               "Monsters And Men"

[[529]]
[1] "Vince"  "Vaughn"

[[530]]
[1] "Miguel"

[[531]]
[1] "Dennis" "Rodman"

[[532]]
[1] "Phoenix"

[[533]]
[1] "Chevy" "Chase"

[[534]]
[1] "Dan"     "Aykroyd"

[[535]]
[1] "Adam"    "Epstein"

[[536]]
[1] "Macklemore"

[[537]]
[1] "Ryan"  "Lewis"

[[538]]
[1] "Wanz"

[[539]]
[1] "Ray"    "Dalton"

[[540]]
[1] "Christoph" "Waltz"    

[[541]]
[1] "Whoopi"   "Goldberg"

[[542]]
[1] "Danny"   "McBride"

[[543]]
[1] "Mickey" "Madden"

[[544]]
[1] "The"       "Lumineers"

[[545]]
[1] "The"                             "New York City Children's Chorus"

[[546]]
[1] "Paul"    "Shaffer"

[[547]]
[1] "Samuel"     "L. Jackson"

[[548]]
[1] "Joe"   "Walsh"

[[549]]
[1] "Dave"  "Grohl"

[[550]]
[1] "Krist"     "Novoselic"

[[551]]
[1] "Pat"   "Smear"

[[552]]
[1] "Jamie" "Foxx" 

[[553]]
[1] "Ne-Yo"

[[554]]
[1] "Dermot"   "Mulroney"

[[555]]
[1] "Charlie" "Day"    

[[556]]
[1] "Jeremy" "Renner"

[[557]]
[1] "Chris"    "Christie"

[[558]]
[1] "Fun."

[[559]]
[1] "Usain" "Bolt" 

[[560]]
[1] "Christina" "Applegate"

[[561]]
[1] "Passion" "Pit"    

[[562]]
[1] "Chris"   "Parnell"

[[563]]
[1] "Muse"

[[564]]
[1] "Big"  "Bird"

[[565]]
[1] "Joseph"        "Gordon-Levitt"

[[566]]
[1] "Seth"       "MacFarlane"

[[567]]
[1] "Psy"

[[568]]
[1] "Frank" "Ocean"

[[569]]
[1] "Abby"    "Elliott"

[[570]]
[1] "Mick"   "Jagger"

[[571]]
[1] "Nikolai"  "Fraiture"

[[572]]
[1] "Jeff" "Beck"

[[573]]
[1] "Chris"  "Kattan"

[[574]]
[1] "Kay"     "Ferrell"

[[575]]
[1] "Julian"      "Casablancas"

[[576]]
[1] "Michael" "Bolton" 

[[577]]
[1] "Eli"     "Manning"

[[578]]
[1] "Abby"   "McGrew"

[[579]]
[1] "Chris" "Snee" 

[[580]]
[1] "David" "Baas" 

[[581]]
[1] "David" "Diehl"

[[582]]
[1] "Shaun"  "O'Hara"

[[583]]
[1] "Sacha"       "Baron Cohen"

[[584]]
[1] "Martin"   "Scorsese"

[[585]]
[1] "Josh"   "Brolin"

[[586]]
[1] "Steven"    "Spielberg"

[[587]]
[1] "Gotye"

[[588]]
[1] "Kimbra"

[[589]]
[1] "Sofia"   "Vergara"

[[590]]
[1] "Manolo"   "Gonzalez"

[[591]]
[1] "The"   "Shins"

[[592]]
[1] "Lindsay" "Lohan"  

[[593]]
[1] "Ruby"   "Amanfu"

[[594]]
[1] "Phil" "Hyms"

[[595]]
[1] "Sleigh" "Bells" 

[[596]]
[1] "Bill"     "O'Reilly"

[[597]]
[1] "Kate"  "Upton"

[[598]]
[1] "Jean"     "Dujardin"

[[599]]
[1] "Karmin"

[[600]]
[1] "Nicolas" "Cage"   

[[601]]
[1] "Channing" "Tatum"   

[[602]]
[1] "Bon"  "Iver"

[[603]]
[1] "Daniel"    "Radcliffe"

[[604]]
[1] "Paul"     "Brittain"

[[605]]
[1] "Lana"    "Del Rey"

[[606]]
[1] "Kelly"    "Clarkson"

[[607]]
[1] "Horatio" "Sanz"   

[[608]]
[1] "Jude" "Law" 

[[609]]
[1] "Val"    "Kilmer"

[[610]]
[1] "Robyn"

[[611]]
[1] "Steve"   "Buscemi"

[[612]]
[1] "Jason" "Segel"

[[613]]
[1] "Jon"      "Huntsman"

[[614]]
[1] "Kermit"   "The Frog"

[[615]]
[1] "Florence" "Welch"   

[[616]]
[1] "Olivia" "Wilde" 

[[617]]
[1] "Alan" "Wong"

[[618]]
[1] "Shelly"  "Gossman"

[[619]]
[1] "Danny"  "DeVito"

[[620]]
[1] "Travie" "McCoy" 

[[621]]
[1] "Hugh"    "Jackman"

[[622]]
[1] "Foster"     "The People"

[[623]]
[1] "Kenny" "G"    

[[624]]
[1] "Lady"       "Antebellum"

[[625]]
[1] "Radiohead"

[[626]]
[1] "Patricia" "Clarkson"

[[627]]
[1] "Susan"    "Sarandon"

[[628]]
[1] "Chris"  "Colfer"

[[629]]
[1] "Lindsey"    "Buckingham"

[[630]]
[1] "Stephen" "Colbert"

[[631]]
[1] "Robert" "Smigel"

[[632]]
[1] "Robin"  "Wright"

[[633]]
[1] "Ellie"    "Goulding"

[[634]]
[1] "Helen"  "Mirren"

[[635]]
[1] "Elton" "John" 

[[636]]
[1] "Carmelo" "Anthony"

[[637]]
[1] "Leon"    "Russell"

[[638]]
[1] "Jessie" "J"     

[[639]]
[1] "B.o.B"

[[640]]
[1] "Russell" "Brand"  

[[641]]
[1] "Chris" "Brown"

[[642]]
[1] "Linkin" "Park"  

[[643]]
[1] "Jesse"     "Eisenberg"

[[644]]
[1] "Dex"    "Carvey"

[[645]]
[1] "Tom"    "Carvey"

[[646]]
[1] "Mark"       "Zuckerberg"

[[647]]
[1] "John"   "Waters"

[[648]]
[1] "Cee"      "Lo Green"

[[649]]
[1] "Pee-Wee" "Herman" 

[[650]]
[1] "Jeff"    "Bridges"

[[651]]
[1] "Cookie"  "Monster"

[[652]]
[1] "Akon"

[[653]]
[1] "Jessica" "Alba"   

[[654]]
[1] "Mario"  "Batali"

[[655]]
[1] "Rob"   "Klein"

[[656]]
[1] "Robin"    "Williams"

[[657]]
[1] "Diddy-Dirty" "Money"      

[[658]]
[1] "Sean"  "Combs"

[[659]]
[1] "David" "Spade"

[[660]]
[1] "Jane"  "Lynch"

[[661]]
[1] "Ernest"   "Borgnine"

[[662]]
[1] "Morgan"  "Freeman"

[[663]]
[1] "Pusha" "T"    

[[664]]
[1] "David"    "Paterson"

[[665]]
[1] "Peter"     "Sarsgaard"

[[666]]
[1] "Tom"   "Petty"

[[667]]
[1] "Jessi" "Klein"

[[668]]
[1] "John" "Lutz"

[[669]]
[1] "Jenny" "Slate"

[[670]]
[1] "Tom"                       "Petty & The Heartbreakers"

[[671]]
[1] "Betty" "White"

[[672]]
[1] "Bridget" "Kelly"  

[[673]]
[1] "Mr"     "Hudson"

[[674]]
[1] "Gabourey" "Sidibe"  

[[675]]
[1] "MGMT"

[[676]]
[1] "Ryan"      "Phillippe"

[[677]]
[1] "Ke$ha"

[[678]]
[1] "Mark"    "Sanchez"

[[679]]
[1] "Pearl" "Jam"  

[[680]]
[1] "Anthony"  "Anderson"

[[681]]
[1] "Brian"    "Williams"

[[682]]
[1] "Dr."       "Mehmet Oz"

[[683]]
[1] "Jeremy" "Sisto" 

[[684]]
[1] "Frank" "Rich" 

[[685]]
[1] "Ashton"  "Kutcher"

[[686]]
[1] "Them"             "Crooked Vultures"

[[687]]
[1] "Sharon" "Jones" 

[[688]]
[1] "Sigourney" "Weaver"   

[[689]]
[1] "James"   "Cameron"

[[690]]
[1] "The"        "Ting Tings"

[[691]]
[1] "Hannibal" "Buress"  

[[692]]
[1] "Mike"  "Tyson"

[[693]]
[1] "Taylor"  "Lautner"

[[694]]
[1] "Bon"  "Jovi"

[[695]]
[1] "Young" "Jeezy"

[[696]]
[1] "Dave"     "Matthews"

[[697]]
[1] "Mindy"  "Kaling"

[[698]]
[1] "Dave"          "Matthews Band"

[[699]]
[1] "January" "Jones"  

[[700]]
[1] "Black"     "Eyed Peas"

[[701]]
[1] "Gerard" "Butler"

[[702]]
[1] "Shakira"

[[703]]
[1] "Justin" "Long"  

[[704]]
[1] "Regina"  "Spektor"

[[705]]
[1] "Elijah" "Wood"  

[[706]]
[1] "Megan" "Fox"  

[[707]]
[1] "Brian"        "Austin Green"

[[708]]
[1] "Michaela" "Watkins" 

[[709]]
[1] "Casey"  "Wilson"

[[710]]
[1] "Norm"      "MacDonald"

[[711]]
[1] "Green" "Day"  

[[712]]
[1] "Artie" "Lange"

[[713]]
[1] "Elisabeth" "Moss"     

[[714]]
[1] "Ciara"

[[715]]
[1] "Zachary" "Quinto" 

[[716]]
[1] "Leonard" "Nimoy"  

[[717]]
[1] "Zac"   "Efron"

[[718]]
[1] "Yeah"       "Yeah Yeahs"

[[719]]
[1] "Simon" "Rich" 

[[720]]
[1] "Stuart"   "Margolin"

[[721]]
[1] "Richard"       "Dean Anderson"

[[722]]
[1] "Ray"        "LaMontagne"

[[723]]
[1] "Jessica" "Biel"   

[[724]]
[1] "James"  "Lipton"

[[725]]
[1] "T-Pain"

[[726]]
[1] "TV"           "on the Radio"

[[727]]
[1] "Liz"       "Cackowski"

[[728]]
[1] "Jason" "Mraz" 

[[729]]
[1] "Britney" "Haas"   

[[730]]
[1] "Craig"   "Eastman"

[[731]]
[1] "Michael" "Daves"  

[[732]]
[1] "Skip" "Ward"

[[733]]
[1] "Colbie"  "Caillat"

[[734]]
[1] "Rosario" "Dawson" 

[[735]]
[1] "Fleet" "Foxes"

[[736]]
[1] "Neil"           "Patrick Harris"

[[737]]
[1] "Liza"     "Minnelli"

[[738]]
[1] "Hugh"   "Laurie"

[[739]]
[1] "John"      "Malkovich"

[[740]]
[1] "T.I."

[[741]]
[1] "Jamie-Lynn" "Sigler"    

[[742]]
[1] "Molly" "Sims" 

[[743]]
[1] "Tim"    "McGraw"

[[744]]
[1] "Ludacris"

[[745]]
[1] "Beyonce"

[[746]]
[1] "Cindy"  "McCain"

[[747]]
[1] "Sen."        "John McCain"

[[748]]
[1] "David" "Cook" 

[[749]]
[1] "John"     "Slattery"

[[750]]
[1] "Mark"     "Wahlberg"

[[751]]
[1] "Sarah" "Palin"

[[752]]
[1] "Oliver" "Stone" 

[[753]]
[1] "Queen"   "Latifah"

[[754]]
[1] "The"     "Killers"

[[755]]
[1] "Duffy"

[[756]]
[1] "Michael" "Phelps" 

[[757]]
[1] "Debbie" "Phelps"

[[758]]
[1] "William" "Shatner"

[[759]]
[1] "Jared" "Fogel"

[[760]]
[1] "Marika" "Sawyer"

[[761]]
[1] "Ricky"   "Gervais"

[[762]]
[1] "Shia"    "LaBeouf"

[[763]]
[1] "My"             "Morning Jacket"

[[764]]
[1] "Doug"   "Abeles"

[[765]]
[1] "Alex" "Baze"

[[766]]
[1] "Demi"  "Moore"

[[767]]
[1] "Gnarls"  "Barkley"

[[768]]
[1] "Christopher" "Walken"     

[[769]]
[1] "Christopher" "Dodd"       

[[770]]
[1] "Panic"        "At The Disco"

[[771]]
[1] "Mariah" "Carey" 

[[772]]
[1] "Vincent"   "D'Onofrio"

[[773]]
[1] "Ellen" "Page" 

[[774]]
[1] "Wilco"

[[775]]
[1] "Rudy"     "Giuliani"

[[776]]
[1] "Amber"        "Lee Ettinger"

[[777]]
[1] "Carrie"    "Underwood"

[[778]]
[1] "Mike"     "Huckabee"

[[779]]
[1] "Barack" "Obama" 

[[780]]
[1] "Bono"

[[781]]
[1] "Matt"  "Lauer"

[[782]]
[1] "Feist"

[[783]]
[1] "Steve" "Turre"

[[784]]
[1] "Jon"      "Bon Jovi"

[[785]]
[1] "Richie"  "Sambora"

[[786]]
[1] "Marci" "Klein"

[[787]]
[1] "Taylor"  "Hawkins"

[[788]]
[1] "Jack"      "Nicholson"

[[789]]
[1] "Spoon"

[[790]]
[1] "LeBron" "James" 

[[791]]
[1] "Zach"  "Braff"

[[792]]
[1] "Sen."            "Charles Schumer"

[[793]]
[1] "Bjork"

[[794]]
[1] "Avril"   "Lavigne"

[[795]]
[1] "Peyton"  "Manning"

[[796]]
[1] "Archie"  "Manning"

[[797]]
[1] "Olivia"  "Manning"

[[798]]
[1] "Snow"   "Patrol"

[[799]]
[1] "Rainn"  "Wilson"

[[800]]
[1] "Rashida" "Jones"  

[[801]]
[1] "Michael"   "Shoemaker"

[[802]]
[1] "Forest"   "Whitaker"

[[803]]
[1] "Keith" "Urban"

[[804]]
[1] "Katreese" "Barnes"  

[[805]]
[1] "Lily"  "Allen"

[[806]]
[1] "Jeremy" "Piven" 

[[807]]
[1] "AFI"

[[808]]
[1] "Annette" "Bening" 

[[809]]
[1] "Matthew" "Fox"    

[[810]]
[1] "Tenacious" "D"        

[[811]]
[1] "Mary"     "J. Blige"

[[812]]
[1] "Takeru"    "Kobayashi"

[[813]]
[1] "Christina" "Aguilera" 

[[814]]
[1] "Tony"    "Bennett"

[[815]]
[1] "Ken"      "Davitian"

[[816]]
[1] "John"      "C. Reilly"

[[817]]
[1] "My"               "Chemical Romance"

[[818]]
[1] "Jaime"   "Pressly"

[[819]]
[1] "Corinne"    "Bailey Rae"

[[820]]
[1] "Dane" "Cook"

[[821]]
[1] "Kevin"  "Spacey"

[[822]]
[1] "Finesse"  "Mitchell"

[[823]]
[1] "Nelly"   "Furtado"

[[824]]
[1] "Timbaland"

[[825]]
[1] "Jason"     "Alexander"

[[826]]
[1] "Red"               "Hot Chili Peppers"

[[827]]
[1] "Michael" "Lohan"  

[[828]]
[1] "Antonio"  "Banderas"

[[829]]
[1] "Matt"   "Dillon"

[[830]]
[1] "J.B."   "Smoove"

[[831]]
[1] "Arctic"  "Monkeys"

[[832]]
[1] "Dennis"   "Haysbert"

[[833]]
[1] "Fall"    "Out Boy"

[[834]]
[1] "Kelly" "Ripa" 

[[835]]
[1] "Tamar"

[[836]]
[1] "Conan"   "O'Brien"

[[837]]
[1] "Gideon" "Yago"  

[[838]]
[1] "Death"         "Cab For Cutie"

[[839]]
[1] "Jack"  "Black"

[[840]]
[1] "Neil"  "Young"

[[841]]
[1] "Johnny"    "Knoxville"

[[842]]
[1] "Darlene" "Love"   

[[843]]
[1] "Kyle" "Gass"

[[844]]
[1] "Tim"     "Meadows"

[[845]]
[1] "Dave"  "Foley"

[[846]]
[1] "Phil"   "Gordon"

[[847]]
[1] "Alejandro" "Sanz"     

[[848]]
[1] "James" "Blunt"

[[849]]
[1] "Eva"      "Longoria"

[[850]]
[1] "Korn"

[[851]]
[1] "Jason" "Lee"  

[[852]]
[1] "Lance"     "Armstrong"

[[853]]
[1] "Sheryl" "Crow"  

[[854]]
[1] "Scott"     "Podsednik"

[[855]]
[1] "Catherine"  "Zeta-Jones"

[[856]]
[1] "Franz"     "Ferdinand"

[[857]]
[1] "Jon"   "Heder"

[[858]]
[1] "Ashlee"  "Simpson"

[[859]]
[1] "Rob"    "Riggle"

[[860]]
[1] "Fred"    "Willard"

[[861]]
[1] "Queens"           "of the Stone Age"

[[862]]
[1] "Paula" "Abdul"

[[863]]
[1] "Leo"   "Allen"

[[864]]
[1] "Eric"   "Slovin"

[[865]]
[1] "System"    "of a Down"

[[866]]
[1] "Patti" "Forte"

[[867]]
[1] "Tom"   "Brady"

[[868]]
[1] "Andy"   "Murphy"

[[869]]
[1] "Eve"

[[870]]
[1] "Matt"     "Piedmont"

[[871]]
[1] "Jack"    "Johnson"

[[872]]
[1] "G."   "Love"

[[873]]
[1] "Hilary" "Swank" 

[[874]]
[1] "50"   "Cent"

[[875]]
[1] "Olivia"

[[876]]
[1] "Paris"  "Hilton"

[[877]]
[1] "Keane"

[[878]]
[1] "Paul"     "Giamatti"

[[879]]
[1] "Sum41"

[[880]]
[1] "Topher" "Grace" 

[[881]]
[1] "Destiny's" "Child"    

[[882]]
[1] "Colin"   "Farrell"

[[883]]
[1] "Scissor" "Sisters"

[[884]]
[1] "Brett" "Hull" 

[[885]]
[1] "Luke"   "Wilson"

[[886]]
[1] "Modest" "Mouse" 

[[887]]
[1] "Kate"    "Winslet"

[[888]]
[1] "Johnny" "Damon" 

[[889]]
[1] "Proof"

[[890]]
[1] "Charlie" "Grandy" 

[[891]]
[1] "Nelly"

[[892]]
[1] "Jaheim"

[[893]]
[1] "James"      "Gandolfini"

[[894]]
[1] "Mary-Kate" "Olsen"    

[[895]]
[1] "Ashley" "Olsen" 

[[896]]
[1] "J-Kwon"

[[897]]
[1] "Snoop" "Dogg" 

[[898]]
[1] "Janet"   "Jackson"

[[899]]
[1] "Simon"  "Cowell"

[[900]]
[1] "Carolyn" "Kepcher"

[[901]]
[1] "George" "Ross"  

[[902]]
[1] "Toots"           "and the Maytals"

[[903]]
[1] "Ben"    "Harper"

[[904]]
[1] "Bootsy"  "Collins"

[[905]]
[1] "The"   "Roots"

[[906]]
[1] "N.E.R.D."

[[907]]
[1] "Colin" "Firth"

[[908]]
[1] "Norah" "Jones"

[[909]]
[1] "Kelis"

[[910]]
[1] "Scott"  "Wainio"

[[911]]
[1] "Megan"    "Mullally"

[[912]]
[1] "Clay"  "Aiken"

[[913]]
[1] "Nick"     "Offerman"

[[914]]
[1] "Jeff"     "Richards"

[[915]]
[1] "Jessica" "Simpson"

[[916]]
[1] "Nick"   "Lachey"

[[917]]
[1] "G"    "Unit"

[[918]]
[1] "Joe"

[[919]]
[1] "Al"      "Franken"

[[920]]
[1] "Jet"

[[921]]
[1] "Missy"   "Elliott"

[[922]]
[1] "Andy"    "Roddick"

[[923]]
[1] "Trey"      "Anastasio"

[[924]]
[1] "Outkast"

[[925]]
[1] "Halle" "Berry"

[[926]]
[1] "Britney" "Spears" 

[[927]]
[1] "George" "Wendt" 

[[928]]
[1] "Carl"     "Weathers"

[[929]]
[1] "Jim"     "Belushi"

[[930]]
[1] "Kip"  "King"

[[931]]
[1] "Tom"   "Davis"

[[932]]
[1] "Dean"    "Edwards"

[[933]]
[1] "Adrien" "Brody" 

[[934]]
[1] "Elliot" "Brody" 

[[935]]
[1] "Sylvia" "Plachy"

[[936]]
[1] "Sean" "Paul"

[[937]]
[1] "Wayne"  "Wonder"

[[938]]
[1] "Lukasz"   "Gottwald"

[[939]]
[1] "Nate" "Dogg"

[[940]]
[1] "Ray"    "Romano"

[[941]]
[1] "Zwan"

[[942]]
[1] "Bernie" "Mac"   

[[943]]
[1] "Good"      "Charlotte"

[[944]]
[1] "Salma" "Hayek"

[[945]]
[1] "Lorenzo" "Lamas"  

[[946]]
[1] "Ms."      "Dynamite"

[[947]]
[1] "Jeff"    "Bergman"

[[948]]
[1] "Tom"   "Kenny"

[[949]]
[1] "Jack"   "Handey"

[[950]]
[1] "T."           "Sean Shannon"

[[951]]
[1] "The"          "Dixie Chicks"

[[952]]
[1] "Ray"    "Liotta"

[[953]]
[1] "The"    "Donnas"

[[954]]
[1] "Jeff"   "Gordon"

[[955]]
[1] "Tipper" "Gore"  

[[956]]
[1] "Allison" "Janney" 

[[957]]
[1] "Bradley"  "Whitford"

[[958]]
[1] "John"    "Spencer"

[[959]]
[1] "Martin" "Sheen" 

[[960]]
[1] "Richard" "Schiff" 

[[961]]
[1] "Phish"

[[962]]
[1] "Harvey" "Keitel"

[[963]]
[1] "Brittany" "Murphy"  

[[964]]
[1] "Kelly"   "Rowland"

[[965]]
[1] "Garrett" "Morris" 

[[966]]
[1] "Nia"      "Vardalos"

[[967]]
[1] "Jean" "Fey" 

[[968]]
[1] "Eric"      "McCormack"

[[969]]
[1] "Lenny"   "Kravitz"

[[970]]
[1] "The"           "White Stripes"

[[971]]
[1] "Sarah"           "Michelle Gellar"

[[972]]
[1] "Faith" "Hill" 

[[973]]
[1] "Soozie" "Tyrell"

[[974]]
[1] "Bruce"       "Springsteen"

[[975]]
[1] "Winona" "Ryder" 

[[976]]
[1] "Alex"   "Trebek"

[[977]]
[1] "Neil"    "Diamond"

[[978]]
[1] "Moby"

[[979]]
[1] "Kirsten" "Dunst"  

[[980]]
[1] "P.O.D."

[[981]]
[1] "The"  "Rock"

[[982]]
[1] "Andrew" "W.K."  

[[983]]
[1] "Jimmy"     "Eat World"

[[984]]
[1] "Ian"      "McKellen"

[[985]]
[1] "Kylie"   "Minogue"

[[986]]
[1] "Jon"     "Stewart"

[[987]]
[1] "George"   "Plimpton"

[[988]]
[1] "Kurt"  "Loder"

[[989]]
[1] "Mike"  "Judge"

[[990]]
[1] "India.Arie"

[[991]]
[1] "Jonny"   "Moseley"

[[992]]
[1] "Rip"    "Taylor"

[[993]]
[1] "John"   "Zonars"

[[994]]
[1] "Josh"     "Hartnett"

[[995]]
[1] "Ellen"     "DeGeneres"

[[996]]
[1] "No"    "Doubt"

[[997]]
[1] "Derek" "Jeter"

[[998]]
[1] "Patrick" "Ferrell"

[[999]]
[1] "David" "Cone" 

[[1000]]
[1] "David" "Wells"

[[1001]]
[1] "Bubba"   "Sparxxx"

[[1002]]
[1] "Billy"        "Bob Thornton"

[[1003]]
[1] "Creed"

[[1004]]
[1] "Ryan"  "Adams"

[[1005]]
[1] "Ja"   "Rule"

[[1006]]
[1] "Ashanti"

[[1007]]
[1] "Case"

[[1008]]
[1] "Tom"   "Green"

[[1009]]
[1] "Macy" "Gray"

[[1010]]
[1] "Colin" "Quinn"

[[1011]]
[1] "Seann"         "William Scott"

[[1012]]
[1] "Kevin"  "Nealon"

[[1013]]
[1] "Weezer"

[[1014]]
[1] "Jerry" "Minor"

[[1015]]
[1] "Lara"        "Flynn Boyle"

[[1016]]
[1] "Adam"  "McKay"

[[1017]]
[1] "Lou"  "Reed"

[[1018]]
[1] "Julia"  "Stiles"

[[1019]]
[1] "Pierce"  "Brosnan"

[[1020]]
[1] "Michelle" "Williams"

[[1021]]
[1] "Renee"     "Zellweger"

[[1022]]
[1] "Kid"  "Rock"

[[1023]]
[1] "Aerosmith"

[[1024]]
[1] "David"       "Copperfield"

[[1025]]
[1] "Dennis"     "McNicholas"

[[1026]]
[1] "Becky"    "Weinberg"

[[1027]]
[1] "Max"      "Weinberg"

[[1028]]
[1] "Don"    "Henley"

[[1029]]
[1] "Katie"  "Holmes"

[[1030]]
[1] "Sean"  "Hayes"

[[1031]]
[1] "Michael" "Schur"  

[[1032]]
[1] "Shaggy"

[[1033]]
[1] "Rikrok"

[[1034]]
[1] "Rayvon"

[[1035]]
[1] "Mark"   "Elliot"

[[1036]]
[1] "Mena"   "Suvari"

[[1037]]
[1] "Janet" "Reno" 

[[1038]]
[1] "Charlie" "Sheen"  

[[1039]]
[1] "Lucy" "Liu" 

[[1040]]
[1] "Hugh" "Fink"

[[1041]]
[1] "Beanie" "Sigel" 

[[1042]]
[1] "Memphis" "Bleek"  

[[1043]]
[1] "Mary"       "Jane Green"

[[1044]]
[1] "Richard" "Green"  

[[1045]]
[1] "David" "Gray" 

[[1046]]
[1] "Derek"  "Harvie"

[[1047]]
[1] "Glenn"   "Humplik"

[[1048]]
[1] "Shawn"    "Greenson"

[[1049]]
[1] "Calista"   "Flockhart"

[[1050]]
[1] "Ricky"  "Martin"

[[1051]]
[1] "Robert"  "Carlock"

[[1052]]
[1] "Baha" "Men" 

[[1053]]
[1] "Matt"  "Walsh"

[[1054]]
[1] "The"         "Wallflowers"

[[1055]]
[1] "Kate"   "Hudson"

[[1056]]
[1] "Nomar"       "Garciaparra"

[[1057]]
[1] "Rob"  "Lowe"

[[1058]]
[1] "Ralph" "Nader"

[[1059]]
[1] "Dido"

[[1060]]
[1] "Brendan" "Fraser" 

[[1061]]
[1] "Florence"  "Henderson"

[[1062]]
[1] "Gina"    "Gershon"

[[1063]]
[1] "Jackie" "Chan"  

[[1064]]
[1] "Cheri" "Oteri"

[[1065]]
[1] "Joe" "C." 

[[1066]]
[1] "Patricia" "Oteri"   

[[1067]]
[1] "Kevin"   "Brennan"

[[1068]]
[1] "Tobey"   "Maguire"

[[1069]]
[1] "Sisqo"

[[1070]]
[1] "Rich"     "Francese"

[[1071]]
[1] "Big"  "Show"

[[1072]]
[1] "Mick"  "Foley"

[[1073]]
[1] "Triple" "H"     

[[1074]]
[1] "Vince"   "McMahon"

[[1075]]
[1] "Steven" "Cragg" 

[[1076]]
[1] "AC/DC"

[[1077]]
[1] "Joshua"  "Jackson"

[[1078]]
[1] "'N"   "Sync"

[[1079]]
[1] "Chris"       "Kirkpatrick"

[[1080]]
[1] "J.C."   "Chasez"

[[1081]]
[1] "Joey"   "Fatone"

[[1082]]
[1] "Lance" "Bass" 

[[1083]]
[1] "The"              "Statler Brothers"

[[1084]]
[1] "Fiona" "Apple"

[[1085]]
[1] "Julianna"  "Margulies"

[[1086]]
[1] "Noah" "Wyle"

[[1087]]
[1] "DMX"

[[1088]]
[1] "Alan"    "Cumming"

[[1089]]
[1] "Fat" "Joe"

[[1090]]
[1] "Freddie"    "Prinze Jr."

[[1091]]
[1] "Angie"    "Everhart"

[[1092]]
[1] "Ryan"    "Shiraki"

[[1093]]
[1] "Blink-182"

[[1094]]
[1] "Michael" "Stipe"  

[[1095]]
[1] "Joe"          "Franken (II)"

[[1096]]
[1] "R.E.M."

[[1097]]
[1] "Cheryl"   "Hardwick"

[[1098]]
[1] "Christina" "Ricci"    

[[1099]]
[1] "John"      "Carpenter"

[[1100]]
[1] "Tim"     "Herlihy"

[[1101]]
[1] "Sting"

[[1102]]
[1] "Cheb" "Mami"

[[1103]]
[1] "Garth"  "Brooks"

[[1104]]
[1] "Chris"  "Gaines"

[[1105]]
[1] "Dylan"     "McDermott"

[[1106]]
[1] "Dr." "Dre"

[[1107]]
[1] "Heather" "Graham" 

[[1108]]
[1] "Marc"    "Anthony"

[[1109]]
[1] "David" "Bowie"

[[1110]]
[1] "Dean"    "Winters"

[[1111]]
[1] "Harold"    "Perrineau"

[[1112]]
[1] "Lee"      "Tergesen"

[[1113]]
[1] "A.J."  "Benza"

[[1114]]
[1] "Rick"   "Ludwin"

[[1115]]
[1] "Howie"   "Dorough"

[[1116]]
[1] "David"    "Boreanaz"

[[1117]]
[1] "Seth"  "Green"

[[1118]]
[1] "Backstreet" "Boys"      

[[1119]]
[1] "Monica"   "Lewinsky"

[[1120]]
[1] "Cuba"        "Gooding Jr."

[[1121]]
[1] "Garbage"

[[1122]]
[1] "Doris"   "Roberts"

[[1123]]
[1] "Peter" "Boyle"

[[1124]]
[1] "The"   "Corrs"

[[1125]]
[1] "Stephanie" "Seymour"  

[[1126]]
[1] "Lucinda"  "Williams"

[[1127]]
[1] "Barenaked" "Ladies"   

[[1128]]
[1] "James"        "Van Der Beek"

[[1129]]
[1] "Everlast"

[[1130]]
[1] "Bill"   "Paxton"

[[1131]]
[1] "Lori"  "Nasso"

[[1132]]
[1] "Debbie"       "Matenopoulos"

[[1133]]
[1] "Luciano"   "Pavarotti"

[[1134]]
[1] "Vanessa"  "Williams"

[[1135]]
[1] "Janice"    "Pendarvis"

[[1136]]
[1] "Lauryn" "Hill"  

[[1137]]
[1] "Jennifer"    "Love Hewitt"

[[1138]]
[1] "Muse"   "Watson"

[[1139]]
[1] "Adam"     "Horovitz"

[[1140]]
[1] "Beastie" "Boys"   

[[1141]]
[1] "Joan"  "Allen"

[[1142]]
[1] "Jewel"

[[1143]]
[1] "Eagle-Eye" "Cherry"   

[[1144]]
[1] "Chili" "Davis"

[[1145]]
[1] "Graeme" "Lloyd" 

[[1146]]
[1] "Tino"     "Martinez"

[[1147]]
[1] "Alanis"     "Morissette"

[[1148]]
[1] "Lucy"    "Lawless"

[[1149]]
[1] "Judge"          "Judy Sheindlin"

[[1150]]
[1] "Chucky"

[[1151]]
[1] "Elliott" "Smith"  

[[1152]]
[1] "Kelsey"  "Grammer"

[[1153]]
[1] "Shaquille" "O'Neal"   

[[1154]]
[1] "Christine" "Baranski" 

[[1155]]
[1] "Hal"    "Linden"

[[1156]]
[1] "Patti"  "LuPone"

[[1157]]
[1] "Wendy"   "Melvoin"

[[1158]]
[1] "The"               "Smashing Pumpkins"

[[1159]]
[1] "Jonathan" "Richman" 

[[1160]]
[1] "Tommy"   "Larkins"

[[1161]]
[1] "David"    "Duchovny"

[[1162]]
[1] "Nicholas" "Lea"     

[[1163]]
[1] "Puff"  "Daddy"

[[1164]]
[1] "Jimmy" "Page" 

[[1165]]
[1] "Jim"    "Breuer"

[[1166]]
[1] "Regis"   "Philbin"

[[1167]]
[1] "Bob"    "Van Ry"

[[1168]]
[1] "Natalie"  "Merchant"

[[1169]]
[1] "Greg"    "Kinnear"

[[1170]]
[1] "All"    "Saints"

[[1171]]
[1] "Bob"     "Hoskins"

[[1172]]
[1] "Lewis"  "Lapham"

[[1173]]
[1] "John" "Hurt"

[[1174]]
[1] "Didi" "Conn"

[[1175]]
[1] "Gilbert"   "Gottfried"

[[1176]]
[1] "Molly"    "Ringwald"

[[1177]]
[1] "Third"     "Eye Blind"

[[1178]]
[1] "Natasha"    "Henstridge"

[[1179]]
[1] "Julianne" "Moore"   

[[1180]]
[1] "Tom"    "Gianas"

[[1181]]
[1] "Scott" "Wolf" 

[[1182]]
[1] "Natalie"   "Imbruglia"

[[1183]]
[1] "Robert" "Duvall"

[[1184]]
[1] "Mark"     "McKinney"

[[1185]]
[1] "Roma"   "Downey"

[[1186]]
[1] "Missy"                   "\"Misdemeanor\" Elliott"

[[1187]]
[1] "Magoo"

[[1188]]
[1] "Cindy"    "Caponera"

[[1189]]
[1] "Lou"    "Marini"

[[1190]]
[1] "Leon"      "Pendarvis"

[[1191]]
[1] "Alan"     "P. Rubin"

[[1192]]
[1] "Paula" "Cole" 

[[1193]]
[1] "Portishead"

[[1194]]
[1] "Frank"      "Sebastiano"

[[1195]]
[1] "Ben"        "Folds Five"

[[1196]]
[1] "Helen" "Hunt" 

[[1197]]
[1] "Cliff" "Floyd"

[[1198]]
[1] "David"  "Howard"

[[1199]]
[1] "Gerald"   "Williams"

[[1200]]
[1] "Gregg"     "Jefferies"

[[1201]]
[1] "Jeff"    "Fassero"

[[1202]]
[1] "Mark"         "Grudzielanek"

[[1203]]
[1] "Mark"    "Wohlers"

[[1204]]
[1] "Marty"   "Cordova"

[[1205]]
[1] "Mike"    "Sweeney"

[[1206]]
[1] "Pedro"      "Borbon Jr."

[[1207]]
[1] "Rondell" "White"  

[[1208]]
[1] "Russ"  "Davis"

[[1209]]
[1] "Scott" "Rolen"

[[1210]]
[1] "Todd"    "Hundley"

[[1211]]
[1] "Todd"  "Zeile"

[[1212]]
[1] "Hanson"

[[1213]]
[1] "Nathan" "Lane"  

[[1214]]
[1] "Ernie"   "Sabella"

[[1215]]
[1] "The"                         "Dallas Cowboys Cheerleaders"

[[1216]]
[1] "Metallica"

[[1217]]
[1] "Marianne"  "Faithfull"

[[1218]]
[1] "Sarah"     "McLachlan"

[[1219]]
[1] "Michael" "McKean" 

[[1220]]
[1] "Claire" "Danes" 

[[1221]]
[1] "Jane's"    "Addiction"

[[1222]]
[1] "Flea"

[[1223]]
[1] "Chris"  "Farley"

[[1224]]
[1] "The"                     "Mighty Mighty Bosstones"

[[1225]]
[1] "Bill"   "Kurtis"

[[1226]]
[1] "Mike"  "Ditka"

[[1227]]
[1] "Eric"      "Dickerson"

[[1228]]
[1] "Joe"   "Dicso"

[[1229]]
[1] "Matthew" "Perry"  

[[1230]]
[1] "Ian"     "Roberts"

[[1231]]
[1] "Oasis"

[[1232]]
[1] "Richard" "Jewell" 

[[1233]]
[1] "Jamiroquai"

[[1234]]
[1] "Jeff"     "Goldblum"

[[1235]]
[1] "En"    "Vogue"

[[1236]]
[1] "Pamela" "Lee"   

[[1237]]
[1] "Tommy" "Lee"  

[[1238]]
[1] "Rollins" "Band"   

[[1239]]
[1] "Joe"   "Pesci"

[[1240]]
[1] "Spice" "Girls"

[[1241]]
[1] "Mark"   "Hamill"

[[1242]]
[1] "Veruca" "Salt"  

[[1243]]
[1] "Trudie" "Styler"

[[1244]]
[1] "Norm"    "Hiscock"

[[1245]]
[1] "Tina"   "Turner"

[[1246]]
[1] "Howard" "Stern" 

[[1247]]
[1] "Live"

[[1248]]
[1] "Neve"     "Campbell"

[[1249]]
[1] "David"      "Alan Grier"

[[1250]]
[1] "Snoop"      "Doggy Dogg"

[[1251]]
[1] "Charlie" "Wilson" 

[[1252]]
[1] "Daz"       "Dillinger"

[[1253]]
[1] "John"   "Cleese"

[[1254]]
[1] "Michael" "Palin"  

[[1255]]
[1] "Rosie"     "O'Donnell"

[[1256]]
[1] "Whitney" "Houston"

[[1257]]
[1] "Penny"    "Marshall"

[[1258]]
[1] "Georgia"    "Mass Choir"

[[1259]]
[1] "Cliff"     "Robertson"

[[1260]]
[1] "Rodney"      "Dangerfield"

[[1261]]
[1] "Bush"

[[1262]]
[1] "Bob"  "Dole"

[[1263]]
[1] "Elizabeth" "Dole"     

[[1264]]
[1] "Robert"     "Downey Jr."

[[1265]]
[1] "Evander"   "Holyfield"

[[1266]]
[1] "Abe"    "Vigoda"

[[1267]]
[1] "Bill"    "Pullman"

[[1268]]
[1] "New"     "Edition"

[[1269]]
[1] "Fred" "Wolf"

[[1270]]
[1] "David"  "Lander"

[[1271]]
[1] "Lisa"   "Kudrow"

[[1272]]
[1] "Kerri" "Strug"

[[1273]]
[1] "John"        "Henry Kurtz"

[[1274]]
[1] "Soundgarden"

[[1275]]
[1] "The"  "Cure"

[[1276]]
[1] "Jim"      "Gaffigan"

[[1277]]
[1] "Teri"    "Hatcher"

[[1278]]
[1] "Sam"       "Waterston"

[[1279]]
[1] "Erin"    "Maroney"

[[1280]]
[1] "Steve"  "Forbes"

[[1281]]
[1] "Rage"                "Against The Machine"

[[1282]]
[1] "Catherine" "Forbes"   

[[1283]]
[1] "Elizabeth" "Forbes"   

[[1284]]
[1] "Moira"  "Forbes"

[[1285]]
[1] "Roberta" "Forbes" 

[[1286]]
[1] "Sabina"  "Beekman"

[[1287]]
[1] "Sabina" "Forbes"

[[1288]]
[1] "Gin"      "Blossoms"

[[1289]]
[1] "Elle"       "MacPherson"

[[1290]]
[1] "Everclear"

[[1291]]
[1] "Tom"    "Arnold"

[[1292]]
[1] "Tupac"  "Shakur"

[[1293]]
[1] "Danny" "Boy"  

[[1294]]
[1] "Roger"    "Troutman"

[[1295]]
[1] "Danny"  "Aiello"

[[1296]]
[1] "Coolio"

[[1297]]
[1] "Larry" "Brown"

[[1298]]
[1] "L.V."

[[1299]]
[1] "Tori" "Amos"

[[1300]]
[1] "George" "Pataki"

[[1301]]
[1] "Joan"    "Osborne"

[[1302]]
[1] "Madeline" "Kahn"    

[[1303]]
[1] "Silverchair"

[[1304]]
[1] "Anthony" "Edwards"

[[1305]]
[1] "Laura"    "Leighton"

[[1306]]
[1] "Grant" "Show" 

[[1307]]
[1] "Rancid"

[[1308]]
[1] "Sean" "Penn"

[[1309]]
[1] "Quentin"   "Tarantino"

[[1310]]
[1] "Robert" "Hegyes"

[[1311]]
[1] "Bill"    "Bradley"

[[1312]]
[1] "Lamar"     "Alexander"

[[1313]]
[1] "Gabriel" "Byrne"  

[[1314]]
[1] "Chipper" "Jones"  

[[1315]]
[1] "Chrissie" "Hynde"   

[[1316]]
[1] "Tom"     "Glavine"

[[1317]]
[1] "David"     "Schwimmer"

[[1318]]
[1] "Barry"    "Williams"

[[1319]]
[1] "Gary"    "Coleman"

[[1320]]
[1] "Jimmie" "Walker"

[[1321]]
[1] "Jennifer" "Turner"  

[[1322]]
[1] "Katell" "Keineg"

[[1323]]
[1] "Mariel"    "Hemingway"

[[1324]]
[1] "Beth"            "McCarthy Miller"

[[1325]]
[1] "Lisa" "Loeb"

[[1326]]
[1] "Don"     "Novello"

[[1327]]
[1] "Blues"    "Traveler"

[[1328]]
[1] "Morwenna" "Banks"   

[[1329]]
[1] "Ellen"     "Cleghorne"

[[1330]]
[1] "Chris"   "Elliott"

[[1331]]
[1] "G.E."  "Smith"

[[1332]]
[1] "Michael"  "Angarano"

[[1333]]
[1] "Naomi"    "Campbell"

[[1334]]
[1] "Jay"  "Mohr"

[[1335]]
[1] "Rod"     "Stewart"

[[1336]]
[1] "Laura"       "Kightlinger"

[[1337]]
[1] "Bob"   "Saget"

[[1338]]
[1] "TLC"

[[1339]]
[1] "Courteney" "Cox"      

[[1340]]
[1] "Damon"  "Wayans"

[[1341]]
[1] "Janeane"  "Garofalo"

[[1342]]
[1] "Dionne" "Farris"

[[1343]]
[1] "Brian"   "Dennehy"

[[1344]]
[1] "The"            "Tragically Hip"

[[1345]]
[1] "Paul"   "Reiser"

[[1346]]
[1] "Billy"     "Grundfest"

[[1347]]
[1] "Steve" "Koren"

[[1348]]
[1] "Dave"   "Wilson"

[[1349]]
[1] "Annie"  "Lennox"

[[1350]]
[1] "George"  "Clooney"

[[1351]]
[1] "Ian"            "Maxtone-Graham"

[[1352]]
[1] "The"         "Cranberries"

[[1353]]
[1] "Akeyla"    "Cleghorne"

[[1354]]
[1] "Bruce"     "McCulloch"

[[1355]]
[1] "Deion"   "Sanders"

[[1356]]
[1] "Manute" "Bol"   

[[1357]]
[1] "Bob"     "Newhart"

[[1358]]
[1] "Des'ree"

[[1359]]
[1] "Marilyn"        "Suzanne Miller"

[[1360]]
[1] "Suzanne"   "Pleshette"

[[1361]]
[1] "David"       "Hyde Pierce"

[[1362]]
[1] "Luscious" "Jackson" 

[[1363]]
[1] "George"  "Foreman"

[[1364]]
[1] "Michael" "Buffer" 

[[1365]]
[1] "Hole"

[[1366]]
[1] "Christian" "Slater"   

[[1367]]
[1] "Roseanne"

[[1368]]
[1] "John"     "Turturro"

[[1369]]
[1] "Joey"       "Buttafuoco"

[[1370]]
[1] "David"      "Hasselhoff"

[[1371]]
[1] "Sarah"          "Jessica Parker"

[[1372]]
[1] "President"   "George Bush"

[[1373]]
[1] "Edie"     "Brickell"

[[1374]]
[1] "John"     "Travolta"

[[1375]]
[1] "Seal"

[[1376]]
[1] "Marisa" "Tomei" 

[[1377]]
[1] "Bonnie" "Raitt" 

[[1378]]
[1] "Lew"    "Morton"

[[1379]]
[1] "Eric"    "Clapton"

[[1380]]
[1] "Bobby"   "Bonilla"

[[1381]]
[1] "Jack"     "McDowell"

[[1382]]
[1] "Lenny"   "Dykstra"

[[1383]]
[1] "Mo"     "Vaughn"

[[1384]]
[1] "Roger"   "Clemens"

[[1385]]
[1] "Heather"  "Locklear"

[[1386]]
[1] "Jay"  "Leno"

[[1387]]
[1] "Melanie" "Hutsell"

[[1388]]
[1] "Julia"   "Sweeney"

[[1389]]
[1] "Rafael" "Fuchs" 

[[1390]]
[1] "The"        "Pretenders"

[[1391]]
[1] "Jan"   "Hooks"

[[1392]]
[1] "Emilio"  "Estevez"

[[1393]]
[1] "Sy"       "Sperling"

[[1394]]
[1] "Dave"   "Attell"

[[1395]]
[1] "Steve"   "Lookner"

[[1396]]
[1] "David"  "Mandel"

[[1397]]
[1] "Dwight"  "Yoakham"

[[1398]]
[1] "Cindy"    "Crawford"

[[1399]]
[1] "Nancy"    "Kerrigan"

[[1400]]
[1] "Christine" "Zander"   

[[1401]]
[1] "Aretha"   "Franklin"

[[1402]]
[1] "Martin"   "Lawrence"

[[1403]]
[1] "Crash"        "Test Dummies"

[[1404]]
[1] "Kim"      "Basinger"

[[1405]]
[1] "UB40"

[[1406]]
[1] "Billy"   "Baldwin"

[[1407]]
[1] "Stephen" "Baldwin"

[[1408]]
[1] "Patrick" "Stewart"

[[1409]]
[1] "Salt-N-Pepa"

[[1410]]
[1] "Bernie" "Kopell"

[[1411]]
[1] "Sara"    "Gilbert"

[[1412]]
[1] "Counting" "Crows"   

[[1413]]
[1] "Jason"  "Patric"

[[1414]]
[1] "Blind" "Melon"

[[1415]]
[1] "Richard" "Simmons"

[[1416]]
[1] "Sally" "Field"

[[1417]]
[1] "Tony!"       "Toni! Tone!"

[[1418]]
[1] "Lili"  "Haydn"

[[1419]]
[1] "Charlton" "Heston"  

[[1420]]
[1] "Paul"       "Westerberg"

[[1421]]
[1] "Nicole" "Kidman"

[[1422]]
[1] "Stone"         "Temple Pilots"

[[1423]]
[1] "Tom"      "Schiller"

[[1424]]
[1] "Jimmy"   "Workman"

[[1425]]
[1] "James"  "Taylor"

[[1426]]
[1] "Casey" "Kasem"

[[1427]]
[1] "Don"      "Grolnick"

[[1428]]
[1] "Billy" "Joel" 

[[1429]]
[1] "T-Bone" "Wolk"  

[[1430]]
[1] "Steven" "Tyler" 

[[1431]]
[1] "Joe"   "Perry"

[[1432]]
[1] "Laura" "Dern" 

[[1433]]
[1] "Shannen" "Doherty"

[[1434]]
[1] "Ashley"   "Hamilton"

[[1435]]
[1] "Cypress" "Hill"   

[[1436]]
[1] "Muggsy" "Bogues"

[[1437]]
[1] "Nirvana"

[[1438]]
[1] "Skid" "Row" 

[[1439]]
[1] "Kevin" "Kline"

[[1440]]
[1] "Bonnie" "Turner"

[[1441]]
[1] "Terry"  "Turner"

[[1442]]
[1] "Joel"   "Godard"

[[1443]]
[1] "Willie" "Nelson"

[[1444]]
[1] "Midnight" "Oil"     

[[1445]]
[1] "Warren"     "Hutcherson"

[[1446]]
[1] "Kirstie" "Alley"  

[[1447]]
[1] "Peter"   "Gabriel"

[[1448]]
[1] "Miranda"    "Richardson"

[[1449]]
[1] "Stephen" "Rea"    

[[1450]]
[1] "Soul"   "Asylum"

[[1451]]
[1] "Marv"   "Albert"

[[1452]]
[1] "The"      "Bravados"

[[1453]]
[1] "Cora"  "Blige"

[[1454]]
[1] "Linda"     "McCartney"

[[1455]]
[1] "Giorgio" "Armani" 

[[1456]]
[1] "Luke"  "Perry"

[[1457]]
[1] "Jeff"    "Renaudo"

[[1458]]
[1] "Joe"      "Mantegna"

[[1459]]
[1] "Grafton" "True"   

[[1460]]
[1] "Glenn" "Close"

[[1461]]
[1] "The"          "Black Crowes"

[[1462]]
[1] "Mary"      "Beth Hurt"

[[1463]]
[1] "Jim"  "Pitt"

[[1464]]
[1] "Roseanne" "Arnold"  

[[1465]]
[1] "Dick"   "Butkus"

[[1466]]
[1] "Sinbad"

[[1467]]
[1] "Sade"

[[1468]]
[1] "Morrissey"

[[1469]]
[1] "Catherine" "O'Hara"   

[[1470]]
[1] "10,000"  "Maniacs"

[[1471]]
[1] "Arrested"    "Development"

[[1472]]
[1] "Spin"    "Doctors"

[[1473]]
[1] "Tim"     "Robbins"

[[1474]]
[1] "Sinead"   "O'Connor"

[[1475]]
[1] "Bobby" "Brown"

[[1476]]
[1] "Cher"

[[1477]]
[1] "Siobhan" "Fallon" 

[[1478]]
[1] "Beth"   "Cahill"

[[1479]]
[1] "Victoria" "Jackson" 

[[1480]]
[1] "Sharon" "Stone" 

[[1481]]
[1] "Ken"     "Stabler"

[[1482]]
[1] "Mary"             "Stuart Masterson"

[[1483]]
[1] "Barbra"    "Streisand"

[[1484]]
[1] "Jason"     "Priestley"

[[1485]]
[1] "Teenage" "Fanclub"

[[1486]]
[1] "Susan" "Dey"  

[[1487]]
[1] "C+C"           "Music Factory"

[[1488]]
[1] "Deborah" "Cooper" 

[[1489]]
[1] "Robbie"    "Robertson"

[[1490]]
[1] "Bruce"   "Hornsby"

[[1491]]
[1] "Ivan"    "Neville"

[[1492]]
[1] "Monk"      "Boudreaux"

[[1493]]
[1] "Rob"    "Morrow"

[[1494]]
[1] "Lew"       "Del Gatto"

[[1495]]
[1] "Susan" "Lucci"

[[1496]]
[1] "Hammer"

[[1497]]
[1] "Macaulay" "Culkin"  

[[1498]]
[1] "Kieran" "Culkin"

[[1499]]
[1] "Tin"     "Machine"

[[1500]]
[1] "Linda"    "Hamilton"

[[1501]]
[1] "Edward"  "Furlong"

[[1502]]
[1] "Rachel" "Bolan" 

[[1503]]
[1] "Sebastian" "Bach"     

[[1504]]
[1] "John"       "McLaughlin"

[[1505]]
[1] "Arnold"         "Schwarzenegger"

[[1506]]
[1] "Ted"    "Danson"

[[1507]]
[1] "Color"   "Me Badd"

[[1508]]
[1] "Michael" "Jordan" 

[[1509]]
[1] "Public" "Enemy" 

[[1510]]
[1] "Jesse"   "Jackson"

[[1511]]
[1] "Spike" "Lee"  

[[1512]]
[1] "Spike"    "Feresten"

[[1513]]
[1] "Dennis" "Miller"

[[1514]]
[1] "Elvis"    "Costello"

[[1515]]
[1] "Andrew" "Robin" 

[[1516]]
[1] "Delta" "Burke"

[[1517]]
[1] "Bob"      "Odenkirk"

[[1518]]
[1] "Chris" "Isaak"

[[1519]]
[1] "Silvertone"

[[1520]]
[1] "Steven" "Seagal"

[[1521]]
[1] "Randy" "Quaid"

[[1522]]
[1] "Kate"    "Pierson"

[[1523]]
[1] "Jeremy" "Irons" 

[[1524]]
[1] "Fishbone"

[[1525]]
[1] "Razor"   "Ruddock"

[[1526]]
[1] "Michael" "J. Fox" 

[[1527]]
[1] "A."            "Whitney Brown"

[[1528]]
[1] "Arthur" "Kent"  

[[1529]]
[1] "Roseanne" "Barr"    

[[1530]]
[1] "Deee-Lite"

[[1531]]
[1] "Bootsy"                    "Collins & The Rubber Band"

[[1532]]
[1] "Kevin" "Bacon"

[[1533]]
[1] "INXS"

[[1534]]
[1] "Vanilla" "Ice"    

[[1535]]
[1] "Dennis" "Quaid" 

[[1536]]
[1] "The"              "Neville Brothers"

[[1537]]
[1] "Elliott" "Gould"  

[[1538]]
[1] "Tony"    "Randall"

[[1539]]
[1] "Edie"                     "Brickell & New Bohemians"

[[1540]]
[1] "Faith"   "No More"

[[1541]]
[1] "Dennis" "Hopper"

[[1542]]
[1] "Bert"  "Parks"

[[1543]]
[1] "Olodum"

[[1544]]
[1] "Jimmy" "Smits"

[[1545]]
[1] "Bob"    "Costas"

[[1546]]
[1] "World" "Party"

[[1547]]
[1] "Patrick" "Swayze" 

[[1548]]
[1] "Lisa"  "Niemi"

[[1549]]
[1] "George"       "Steinbrenner"

[[1550]]
[1] "The"  "Time"

[[1551]]
[1] "Hothouse" "Flowers" 

[[1552]]
[1] "Gene"    "Rayburn"

[[1553]]
[1] "Kyle"       "MacLachlan"

[[1554]]
[1] "Audrey"        "Peart Dickman"

[[1555]]
[1] "The"                 "Notting Hillbillies"

[[1556]]
[1] "Nora" "Dunn"

[[1557]]
[1] "Andrew"    "Dice Clay"

[[1558]]
[1] "The"         "Spanic Boys"

[[1559]]
[1] "Julee"  "Cruise"

[[1560]]
[1] "The"    "B-52's"

[[1561]]
[1] "Gregory" "Daniels"

[[1562]]
[1] "Corbin"  "Bernsen"

[[1563]]
[1] "The"         "Smithereens"

[[1564]]
[1] "Debra"  "Winger"

[[1565]]
[1] "The"    "Pogues"

[[1566]]
[1] "Fred"   "Savage"

[[1567]]
[1] "Joanne" "Savage"

[[1568]]
[1] "Technotronic"

[[1569]]
[1] "Kala"   "Savage"

[[1570]]
[1] "Rosie" "Perez"

[[1571]]
[1] "Quincy" "Jones" 

[[1572]]
[1] "Tevin"    "Campbell"

[[1573]]
[1] "Andrae" "Crouch"

[[1574]]
[1] "Sandra" "Crouch"

[[1575]]
[1] "Kool"    "Moe Dee"

[[1576]]
[1] "Big"        "Daddy Kane"

[[1577]]
[1] "Melle" "Mel"  

[[1578]]
[1] "Quincy" "D III" 

[[1579]]
[1] "Siedah"  "Garrett"

[[1580]]
[1] "Al"      "Jarreau"

[[1581]]
[1] "Take" "6"   

[[1582]]
[1] "Ed"      "O'Neill"

[[1583]]
[1] "Maury"  "Povich"

[[1584]]
[1] "Harry"       "Connick Jr."

[[1585]]
[1] "Marc"    "Shaiman"

[[1586]]
[1] "Andie"     "MacDowell"

[[1587]]
[1] "Tracy"   "Chapman"

[[1588]]
[1] "Robert" "Wagner"

[[1589]]
[1] "Linda"    "Ronstadt"

[[1590]]
[1] "Aaron"   "Neville"

[[1591]]
[1] "K.D."                "Lang & The Reclines"

[[1592]]
[1] "Chris" "Evert"

[[1593]]
[1] "Eurythmics"

[[1594]]
[1] "James" "Woods"

[[1595]]
[1] "Kathleen" "Turner"  

[[1596]]
[1] "Rick"    "Moranis"

[[1597]]
[1] "Rickie"    "Lee Jones"

[[1598]]
[1] "Steve"  "Jordan"

[[1599]]
[1] "Timothy"  "Busfield"

[[1600]]
[1] "Paulina"   "Porizkova"

[[1601]]
[1] "Wayne"   "Gretzky"

[[1602]]
[1] "Janet" "Jones"

[[1603]]
[1] "Fine"            "Young Cannibals"

[[1604]]
[1] "Geena" "Davis"

[[1605]]
[1] "John"       "Mellencamp"

[[1606]]
[1] "Dolly"  "Parton"

[[1607]]
[1] "Mel"    "Gibson"

[[1608]]
[1] "Living" "Colour"

[[1609]]
[1] "Danny"  "Glover"

[[1610]]
[1] "Mary"        "Tyler Moore"

[[1611]]
[1] "John"   "Bowman"

[[1612]]
[1] "William" "Hurt"   

[[1613]]
[1] "The"         "Gipsy Kings"

[[1614]]
[1] "Leslie"  "Nielsen"

[[1615]]
[1] "Beverly" "Johnson"

[[1616]]
[1] "Cheryl" "Tiegs" 

[[1617]]
[1] "Kim"    "Alexis"

[[1618]]
[1] "Cowboy"  "Junkies"

[[1619]]
[1] "Luther"   "Vandross"

[[1620]]
[1] "Tony"  "Danza"

[[1621]]
[1] "John"  "Hiatt"

[[1622]]
[1] "The"    "Goners"

[[1623]]
[1] "Anita" "Baker"

[[1624]]
[1] "Little" "Feat"  

[[1625]]
[1] "Bobby"    "McFerrin"

[[1626]]
[1] "The"     "Bangles"

[[1627]]
[1] "John"    "Lithgow"

[[1628]]
[1] "Johnny"         "Clegg & Savuka"

[[1629]]
[1] "Matthew" "Modine" 

[[1630]]
[1] "Morton"     "Downey Jr."

[[1631]]
[1] "John"        "Larroquette"

[[1632]]
[1] "Randy"  "Newman"

[[1633]]
[1] "Mark"     "Knopfler"

[[1634]]
[1] "The"        "Sugarcubes"

[[1635]]
[1] "Douglas" "McGrath"

[[1636]]
[1] "Fred"   "Newman"

[[1637]]
[1] "Laurie"  "Metcalf"

[[1638]]
[1] "Keith"    "Richards"

[[1639]]
[1] "Judge"    "Reinhold"

[[1640]]
[1] "Randy"  "Travis"

[[1641]]
[1] "Justine" "Bateman"

[[1642]]
[1] "Terrance"     "Trent D'Arby"

[[1643]]
[1] "BoDeans"

[[1644]]
[1] "Maria" "McKee"

[[1645]]
[1] "Leland" "Sklar" 

[[1646]]
[1] "Sen."       "Paul Simon"

[[1647]]
[1] "The"                           "Mariachi Vargas de Tecalitlan"

[[1648]]
[1] "Angie"     "Dickinson"

[[1649]]
[1] "Buster"     "Poindexter"

[[1650]]
[1] "The"              "Banshees of Blue"

[[1651]]
[1] "The"          "Uptown Horns"

[[1652]]
[1] "David"   "Gilmour"

[[1653]]
[1] "Bryan" "Ferry"

[[1654]]
[1] "Rhea"    "Perlman"

[[1655]]
[1] "Sydney"         "Biddle Barrows"

[[1656]]
[1] "Robert"  "Mitchum"

[[1657]]
[1] "Simply" "Red"   

[[1658]]
[1] "Bentley" "Mitchum"

[[1659]]
[1] "Jane"  "Greer"

[[1660]]
[1] "Ric"    "Ocasek"

[[1661]]
[1] "Elvira"

[[1662]]
[1] "Dabney"  "Coleman"

[[1663]]
[1] "The"  "Cars"

[[1664]]
[1] "LL"     "Cool J"

[[1665]]
[1] "The"  "Pull"

[[1666]]
[1] "Branford" "Marsalis"

[[1667]]
[1] "Bruce"   "Babbitt"

[[1668]]
[1] "Roy"     "Orbison"

[[1669]]
[1] "Garry"     "Shandling"

[[1670]]
[1] "Los"   "Lobos"

[[1671]]
[1] "Nell"     "Campbell"

[[1672]]
[1] "Tracey" "Ullman"

[[1673]]
[1] "Mark"   "Harmon"

[[1674]]
[1] "Suzanne" "Vega"   

[[1675]]
[1] "Timbuk" "3"     

[[1676]]
[1] "Al"     "Camoin"

[[1677]]
[1] "Wynton"   "Marsalis"

[[1678]]
[1] "Bob"   "Hurst"

[[1679]]
[1] "Don"    "Braden"

[[1680]]
[1] "Jeff"  "Watts"

[[1681]]
[1] "Marcus"  "Roberts"

[[1682]]
[1] "Anne"  "Meara"

[[1683]]
[1] "Jerry"   "Stiller"

[[1684]]
[1] "John"    "Mahoney"

[[1685]]
[1] "Julie"   "Hagerty"

[[1686]]
[1] "Nina"     "Tremblay"

[[1687]]
[1] "Brian"       "McConnachie"

[[1688]]
[1] "Percy"  "Sledge"

[[1689]]
[1] "Valerie"    "Bertinelli"

[[1690]]
[1] "Edwin"  "Newman"

[[1691]]
[1] "Eddie"     "Van Halen"

[[1692]]
[1] "The"              "Robert Cray Band"

[[1693]]
[1] "Bronson" "Pinchot"

[[1694]]
[1] "Paul"  "Young"

[[1695]]
[1] "Bruce"               "Hornsby & The Range"

[[1696]]
[1] "Walter" "Payton"

[[1697]]
[1] "Joe"     "Montana"

[[1698]]
[1] "Debbie" "Harry" 

[[1699]]
[1] "Chris" "Stein"

[[1700]]
[1] "Kevin"  "Meaney"

[[1701]]
[1] "Lone"    "Justice"

[[1702]]
[1] "Griffin" "Dunne"  

[[1703]]
[1] "Steve"      "Guttenberg"

[[1704]]
[1] "Penn"     "& Teller"

[[1705]]
[1] "Eriq"     "La Salle"

[[1706]]
[1] "Fisher"  "Stevens"

[[1707]]
[1] "Eric" "Idle"

[[1708]]
[1] "Art"       "Garfunkel"

[[1709]]
[1] "Ladysmith"     "Black Mambazo"

[[1710]]
[1] "Sam"     "Kinison"

[[1711]]
[1] "Seka"

[[1712]]
[1] "Andy"     "Breckman"

[[1713]]
[1] "Ron"     "Darling"

[[1714]]
[1] "Rosanna"  "Arquette"

[[1715]]
[1] "Bill"   "Wegman"

[[1716]]
[1] "Malcolm-Jamal" "Warner"       

[[1717]]
[1] "Rosie"    "Schuster"

[[1718]]
[1] "Run" "DMC"

[[1719]]
[1] "Christopher" "Durang"     

[[1720]]
[1] "Mauricio" "Smith"   

[[1721]]
[1] "Billy"  "Martin"

[[1722]]
[1] "Joan"   "Cusack"

[[1723]]
[1] "Terry"   "Sweeney"

[[1724]]
[1] "Danitra" "Vance"  

[[1725]]
[1] "Anjelica" "Huston"  

[[1726]]
[1] "Anthony"      "Michael Hall"

[[1727]]
[1] "George"                              "Clinton & The Parliament Funkadelic"

[[1728]]
[1] "Thomas" "Dolby" 

[[1729]]
[1] "Carol"  "Leifer"

[[1730]]
[1] "Marvelous"     "Marvin Hagler"

[[1731]]
[1] "Jimmy"   "Breslin"

[[1732]]
[1] "Level" "42"   

[[1733]]
[1] "Bob"          "Christianson"

[[1734]]
[1] "E.G."  "Daily"

[[1735]]
[1] "Catherine" "Oxenberg" 

[[1736]]
[1] "Princess"                "Elizabeth of Yugoslavia"

[[1737]]
[1] "Laurie"   "Anderson"

[[1738]]
[1] "Oprah"   "Winfrey"

[[1739]]
[1] "Joe"     "Jackson"

[[1740]]
[1] "John"         "Swartzwelder"

[[1741]]
[1] "Francis"      "Ford Coppola"

[[1742]]
[1] "Philip" "Glass" 

[[1743]]
[1] "Rosanne" "Cash"   

[[1744]]
[1] "Mike"    "The Dog"

[[1745]]
[1] "Jerry" "Hall" 

[[1746]]
[1] "Stevie"      "Ray Vaughan"

[[1747]]
[1] "Double"  "Trouble"

[[1748]]
[1] "Jimmie"  "Vaughan"

[[1749]]
[1] "Ron"    "Reagan"

[[1750]]
[1] "Dan"    "Vitale"

[[1751]]
[1] "The"     "Nelsons"

[[1752]]
[1] "Dudley" "Moore" 

[[1753]]
[1] "Al"    "Green"

[[1754]]
[1] "Harry"        "Dean Stanton"

[[1755]]
[1] "The"          "Replacements"

[[1756]]
[1] "Teri" "Garr"

[[1757]]
[1] "Dream"   "Academy"

[[1758]]
[1] "The"  "Cult"

[[1759]]
[1] "Steven" "Wright"

[[1760]]
[1] "Mr."    "Mister"

[[1761]]
[1] "Rex"     "Robbins"

[[1762]]
[1] "Queen" "Ida"  

[[1763]]
[1] "Sheila" "E."    

[[1764]]
[1] "Brandon"   "Tartikoff"

[[1765]]
[1] "Simple" "Minds" 

[[1766]]
[1] "Christopher" "Guest"      

[[1767]]
[1] "Howard" "Cosell"

[[1768]]
[1] "Gary"    "Kroeger"

[[1769]]
[1] "Mary"  "Gross"

[[1770]]
[1] "Pamela"     "Stephenson"

[[1771]]
[1] "Rich" "Hall"

[[1772]]
[1] "Kevin"  "Kelton"

[[1773]]
[1] "Frederick" "Koehler"  

[[1774]]
[1] "Greg" "Kihn"

[[1775]]
[1] "Rob"   "Riley"

[[1776]]
[1] "Christopher" "Reeve"      

[[1777]]
[1] "Calvert"  "DeForest"

[[1778]]
[1] "Santana"

[[1779]]
[1] "Anne"   "Beatts"

[[1780]]
[1] "Mr." "T"  

[[1781]]
[1] "Hulk"  "Hogan"

[[1782]]
[1] "Steve"      "Landesberg"

[[1783]]
[1] "Liberace"

[[1784]]
[1] "The"        "Commodores"

[[1785]]
[1] "Bob"   "Orton"

[[1786]]
[1] "Rowdy"       "Roddy Piper"

[[1787]]
[1] "Pamela"     "Sue Martin"

[[1788]]
[1] "Ann-Margret"

[[1789]]
[1] "Lynn"  "Swann"

[[1790]]
[1] "Morgan"    "Fairchild"

[[1791]]
[1] "Dick"    "Ebersol"

[[1792]]
[1] "Andrew" "Smith" 

[[1793]]
[1] "Power"   "Station"

[[1794]]
[1] "Harry"    "Anderson"

[[1795]]
[1] "Waylon"   "Jennings"

[[1796]]
[1] "Johnny" "Cash"  

[[1797]]
[1] "June"        "Carter Cash"

[[1798]]
[1] "Bryan" "Adams"

[[1799]]
[1] "Carol"   "Burnett"

[[1800]]
[1] "Alex"   "Karras"

[[1801]]
[1] "Roy"      "Scheider"

[[1802]]
[1] "Billy" "Ocean"

[[1803]]
[1] "Harry"   "Shearer"

[[1804]]
[1] "John"  "Waite"

[[1805]]
[1] "Clint" "Smith"

[[1806]]
[1] "Robert"                    "Plant & The Honeydrippers"

[[1807]]
[1] "Ronnie" "Cuber" 

[[1808]]
[1] "Tom"    "Malone"

[[1809]]
[1] "Georg"    "Wadenius"

[[1810]]
[1] "Buddy"    "Williams"

[[1811]]
[1] "Alan"    "Zweibel"

[[1812]]
[1] "Willie" "Day"   

[[1813]]
[1] "Ringo" "Starr"

[[1814]]
[1] "James"       "Pickens Jr."

[[1815]]
[1] "Herbie"  "Hancock"

[[1816]]
[1] "Barbara" "Bach"   

[[1817]]
[1] "Ed"         "Begley Jr."

[[1818]]
[1] "Billy"  "Squier"

[[1819]]
[1] "Lee"    "Mayman"

[[1820]]
[1] "Ed"    "Asner"

[[1821]]
[1] "The"   "Kinks"

[[1822]]
[1] "George" "Carlin"

[[1823]]
[1] "Nate"   "Herman"

[[1824]]
[1] "Frankie"           "Goes To Hollywood"

[[1825]]
[1] "Bobby"     "Fraraccio"

[[1826]]
[1] "Chaka" "Khan" 

[[1827]]
[1] "Yvonne" "Hudson"

[[1828]]
[1] "Heino" "Ripp" 

[[1829]]
[1] "Wintley" "Phipps" 

[[1830]]
[1] "Bob"    "Uecker"

[[1831]]
[1] "Dave"     "Winfield"

[[1832]]
[1] "Yogi"  "Berra"

[[1833]]
[1] "Peter" "Wolf" 

[[1834]]
[1] "Elliot" "Easton"

[[1835]]
[1] "Gordon"               "\"Megabucks\" Worthy"

[[1836]]
[1] "Leon"   "Mobley"

[[1837]]
[1] "Maurice" "Starr"  

[[1838]]
[1] "Michael"             "\"Spaceman\" Jonzun"

[[1839]]
[1] "Thommy" "Price" 

[[1840]]
[1] "Reginald"   "VelJohnson"

[[1841]]
[1] "Rob"    "Reiner"

[[1842]]
[1] "The"            "Thompson Twins"

[[1843]]
[1] "Jamie"      "Lee Curtis"

[[1844]]
[1] "Joe"     "Piscopo"

[[1845]]
[1] "Ed"   "Koch"

[[1846]]
[1] "Father"         "Guido Sarducci"

[[1847]]
[1] "Betty"  "Thomas"

[[1848]]
[1] "Brad" "Hall"

[[1849]]
[1] "Tim"        "Kazurinsky"

[[1850]]
[1] "Robin" "Duke" 

[[1851]]
[1] "Timothy" "Hutton" 

[[1852]]
[1] "Joel"    "Hodgson"

[[1853]]
[1] "Barry"    "Bostwick"

[[1854]]
[1] "Spinal" "Tap"   

[[1855]]
[1] "Soupy" "Sales"

[[1856]]
[1] "George"   "McGovern"

[[1857]]
[1] "Clara"  "Peller"

[[1858]]
[1] "Frankie" "Pace"   

[[1859]]
[1] "Madness"

[[1860]]
[1] "Eleanor"  "McGovern"

[[1861]]
[1] "Michael" "Douglas"

[[1862]]
[1] "Deniece"  "Williams"

[[1863]]
[1] "Al"     "Siegal"

[[1864]]
[1] "Kool"       "& The Gang"

[[1865]]
[1] "The"  "Fixx"

[[1866]]
[1] "Adam" "Ant" 

[[1867]]
[1] "Paula"      "Poundstone"

[[1868]]
[1] "Don"     "Rickles"

[[1869]]
[1] "John"   "Madden"

[[1870]]
[1] "Stevie" "Wonder"

[[1871]]
[1] "Dr."            "Joyce Brothers"

[[1872]]
[1] "Billy" "Idol" 

[[1873]]
[1] "Mary"  "Palin"

[[1874]]
[1] "The"    "Motels"

[[1875]]
[1] "Huey"             "Lewis & The News"

[[1876]]
[1] "Flip"   "Wilson"

[[1877]]
[1] "Stevie" "Nicks" 

[[1878]]
[1] "Tom"      "Smothers"

[[1879]]
[1] "Dick"     "Smothers"

[[1880]]
[1] "Ron"     "Luciano"

[[1881]]
[1] "Tom"    "Seaver"

[[1882]]
[1] "Big"     "Country"

[[1883]]
[1] "Larry"  "Holmes"

[[1884]]
[1] "Jerry" "Lewis"

[[1885]]
[1] "Loverboy"

[[1886]]
[1] "Mick"            "Fleetwood's Zoo"

[[1887]]
[1] "Stray" "Cats" 

[[1888]]
[1] "14"         "Karat Soul"

[[1889]]
[1] "John"  "Candy"

[[1890]]
[1] "Men"     "At Work"

[[1891]]
[1] "Jackson" "Beck"   

[[1892]]
[1] "Eddy"  "Grant"

[[1893]]
[1] "Dick"   "Cavett"

[[1894]]
[1] "John"   "Cougar"

[[1895]]
[1] "Gene"   "Siskel"

[[1896]]
[1] "Roger" "Ebert"

[[1897]]
[1] "Kevin"                             "Rowland & Dexy's Midnight Runners"

[[1898]]
[1] "Don"  "King"

[[1899]]
[1] "Leslie"  "Pollack"

[[1900]]
[1] "Michael" "Davis"  

[[1901]]
[1] "Greg" "Dean"

[[1902]]
[1] "Susan"       "Saint James"

[[1903]]
[1] "Michael"  "McDonald"

[[1904]]
[1] "Edgar"  "Winter"

[[1905]]
[1] "Joan"   "Rivers"

[[1906]]
[1] "David"    "Susskind"

[[1907]]
[1] "Musical" "Youth"  

[[1908]]
[1] "Robert"    "Guillaume"

[[1909]]
[1] "Duran" "Duran"

[[1910]]
[1] "Bruce" "Dern" 

[[1911]]
[1] "Leon"    "Redbone"

[[1912]]
[1] "Beau"    "Bridges"

[[1913]]
[1] "Lloyd"   "Bridges"

[[1914]]
[1] "Laurie" "Zaks"  

[[1915]]
[1] "Howard"   "Hesseman"

[[1916]]
[1] "Milan"  "Melvin"

[[1917]]
[1] "Sid"    "Caesar"

[[1918]]
[1] "Joe"    "Cocker"

[[1919]]
[1] "Jennifer" "Warnes"  

[[1920]]
[1] "Dave"   "Thomas"

[[1921]]
[1] "The"      "Bus Boys"

[[1922]]
[1] "Andy"    "Kaufman"

[[1923]]
[1] "Barry"    "Mitchell"

[[1924]]
[1] "Lionel" "Richie"

[[1925]]
[1] "Lawrence"    "K. Grossman"

[[1926]]
[1] "Laura"    "Branigan"

[[1927]]
[1] "Squeeze"

[[1928]]
[1] "Robert" "Blake" 

[[1929]]
[1] "Merv"    "Griffin"

[[1930]]
[1] "Kenny"   "Loggins"

[[1931]]
[1] "The"                  "New Joe Jackson Band"

[[1932]]
[1] "Bill"  "Irwin"

[[1933]]
[1] "Ron"    "Howard"

[[1934]]
[1] "Andy"     "Griffith"

[[1935]]
[1] "Rex"  "Reed"

[[1936]]
[1] "The"   "Clash"

[[1937]]
[1] "Louis"       "Gossett Jr."

[[1938]]
[1] "George"                     "Thorogood & The Destroyers"

[[1939]]
[1] "Eliot" "Wald" 

[[1940]]
[1] "John"     "Zacherle"

[[1941]]
[1] "Queen"

[[1942]]
[1] "Olivia"      "Newton-John"

[[1943]]
[1] "Christine" "Ebersole" 

[[1944]]
[1] "Tony"   "Rosato"

[[1945]]
[1] "Graham"  "Chapman"

[[1946]]
[1] "Brian"        "Doyle-Murray"

[[1947]]
[1] "Liz"   "Welch"

[[1948]]
[1] "Christopher" "Lloyd"      

[[1949]]
[1] "Judd"   "Hirsch"

[[1950]]
[1] "Marilu" "Henner"

[[1951]]
[1] "Neil" "Levy"

[[1952]]
[1] "Ron"  "Mael"

[[1953]]
[1] "Sparks"

[[1954]]
[1] "Jerry"  "Lawler"

[[1955]]
[1] "Julia"  "DeVito"

[[1956]]
[1] "Robert" "Culp"  

[[1957]]
[1] "The"                  "Charlie Daniels Band"

[[1958]]
[1] "Barry"        "W. Blaustein"

[[1959]]
[1] "Nelson" "Lyon"  

[[1960]]
[1] "Daniel"      "J. Travanti"

[[1961]]
[1] "Bruce" "Weitz"

[[1962]]
[1] "Blythe" "Danner"

[[1963]]
[1] "Robert" "Urich" 

[[1964]]
[1] "Mink"     "De Ville"

[[1965]]
[1] "Elizabeth" "Ashley"   

[[1966]]
[1] "Daryl" "Hall" 

[[1967]]
[1] "John"  "Oates"

[[1968]]
[1] "Joseph" "Papp"  

[[1969]]
[1] "James"  "Coburn"

[[1970]]
[1] "The"    "Cholos"

[[1971]]
[1] "Marc"   "Weiner"

[[1972]]
[1] "Marv"        "Throneberry"

[[1973]]
[1] "Jennifer" "Holliday"

[[1974]]
[1] "Bob"   "Zmuda"

[[1975]]
[1] "Brent"     "Musburger"

[[1976]]
[1] "Robert" "Conrad"

[[1977]]
[1] "The"                  "Allman Brothers Band"

[[1978]]
[1] "Mark"      "O'Donnell"

[[1979]]
[1] "The"      "Spinners"

[[1980]]
[1] "The"               "Yale Whiffenpoofs"

[[1981]]
[1] "Tim"   "Curry"

[[1982]]
[1] "Frank"  "Nelson"

[[1983]]
[1] "Bryant" "Gumbel"

[[1984]]
[1] "Meat" "Loaf"

[[1985]]
[1] "Bernadette" "Peters"    

[[1986]]
[1] "David"     "Sheffield"

[[1987]]
[1] "The"     "Go-Go's"

[[1988]]
[1] "Lauren" "Hutton"

[[1989]]
[1] "Rick"  "James"

[[1990]]
[1] "Stone"     "City Band"

[[1991]]
[1] "William"   "Burroughs"

[[1992]]
[1] "Emily"  "Prager"

[[1993]]
[1] "Donald"    "Pleasence"

[[1994]]
[1] "John"    "Belushi"

[[1995]]
[1] "Fear"

[[1996]]
[1] "Andy"   "Warhol"

[[1997]]
[1] "George"  "Kennedy"

[[1998]]
[1] "Pete"     "Fatovich"

[[1999]]
[1] "Miles" "Davis"

[[2000]]
[1] "Marcus" "Miller"

[[2001]]
[1] "Michael"    "O'Donoghue"

[[2002]]
[1] "Denny"  "Dillon"

[[2003]]
[1] "Gail"     "Matthius"

[[2004]]
[1] "Jr."                    "Walker & The All Stars"

[[2005]]
[1] "Ann"    "Risley"

[[2006]]
[1] "Charles" "Rocket" 

[[2007]]
[1] "Matthew"  "Laurance"

[[2008]]
[1] "Delbert"   "McClinton"

[[2009]]
[1] "Bonnie"   "Bramlett"

[[2010]]
[1] "Mark" "King"

[[2011]]
[1] "Karen"  "Roston"

[[2012]]
[1] "Patrick"  "Weathers"

[[2013]]
[1] "Charlene" "Tilton"  

[[2014]]
[1] "Todd"     "Rundgren"

[[2015]]
[1] "Deborah" "Harry"  

[[2016]]
[1] "Clem"  "Burke"

[[2017]]
[1] "Funky"      "4 + 1 More"

[[2018]]
[1] "Sally"     "Kellerman"

[[2019]]
[1] "Jimmy" "Cliff"

[[2020]]
[1] "Jim"    "Fowler"

[[2021]]
[1] "Robert" "Hays"  

[[2022]]
[1] "Michael" "Nesmith"

[[2023]]
[1] "Harry"   "Osborne"

[[2024]]
[1] "Joe"                            "\"King\" Carrasco & The Crowns"

[[2025]]
[1] "Karen" "Black"

[[2026]]
[1] "Cheap" "Trick"

[[2027]]
[1] "Stanley"     "Clarke Trio"

[[2028]]
[1] "Ray"     "Sharkey"

[[2029]]
[1] "Elliott" "Randall"

[[2030]]
[1] "Jack"            "Bruce & Friends"

[[2031]]
[1] "David"     "Carradine"

[[2032]]
[1] "George" "Rose"  

[[2033]]
[1] "Rex"   "Smith"

[[2034]]
[1] "The"                                 "cast of \"The Pirates of Penzance\""

[[2035]]
[1] "Mitchell" "Kriegman"

[[2036]]
[1] "Mitchell" "Laurance"

[[2037]]
[1] "James" "Brown"

[[2038]]
[1] "William"      "Duff-Griffin"

[[2039]]
[1] "Ellen"   "Shipley"

[[2040]]
[1] "Ellen"   "Burstyn"

[[2041]]
[1] "David"   "Sanborn"

[[2042]]
[1] "Keith" "Sykes"

[[2043]]
[1] "Malcolm"  "McDowell"

[[2044]]
[1] "Captain"                    "Beefheart & The Magic Band"

[[2045]]
[1] "Kid"                   "Creole & The Coconuts"

[[2046]]
[1] "Buck"  "Henry"

[[2047]]
[1] "Matt"   "Neuman"

[[2048]]
[1] "Walter"   "Williams"

[[2049]]
[1] "Peter"   "Aykroyd"

[[2050]]
[1] "Jane"   "Curtin"

[[2051]]
[1] "Tom"     "Gammill"

[[2052]]
[1] "Laraine" "Newman" 

[[2053]]
[1] "Sarah" "Paley"

[[2054]]
[1] "Max"   "Pross"

[[2055]]
[1] "Gilda"  "Radner"

[[2056]]
[1] "Andrew" "Gold"  

[[2057]]
[1] "Richard" "Belzer" 

[[2058]]
[1] "Nil"     "Nichols"

[[2059]]
[1] "The"             "Voices Of Unity"

[[2060]]
[1] "3-D"

[[2061]]
[1] "Howard"  "Johnson"

[[2062]]
[1] "Howard" "Shore" 

[[2063]]
[1] "The"                 "Amazing Rhythm Aces"

[[2064]]
[1] "Bruce"    "Cockburn"

[[2065]]
[1] "Strother" "Martin"  

[[2066]]
[1] "The"      "Specials"

[[2067]]
[1] "Burt"     "Reynolds"

[[2068]]
[1] "Anne"   "Murray"

[[2069]]
[1] "Paula"    "Prentiss"

[[2070]]
[1] "Richard"  "Benjamin"

[[2071]]
[1] "The"           "Grateful Dead"

[[2072]]
[1] "Carrie" "Fisher"

[[2073]]
[1] "Sen."               "Daniel P. Moynihan"

[[2074]]
[1] "Franne" "Lee"   

[[2075]]
[1] "The"           "J. Geils Band"

[[2076]]
[1] "Jerry"   "Mathers"

[[2077]]
[1] "Tony" "Dow" 

[[2078]]
[1] "Kirk"    "Douglas"

[[2079]]
[1] "Lucie"     "Lancaster"

[[2080]]
[1] "Sam"    "& Dave"

[[2081]]
[1] "Jack"   "Garner"

[[2082]]
[1] "Joan"    "Hackett"

[[2083]]
[1] "Gary"  "Numan"

[[2084]]
[1] "Bert"  "Convy"

[[2085]]
[1] "Tom"   "Scott"

[[2086]]
[1] "John"        "B. Anderson"

[[2087]]
[1] "Ted"    "Knight"

[[2088]]
[1] "Desmond"       "Child & Rouge"

[[2089]]
[1] "Buddy"  "Rogers"

[[2090]]
[1] "Diana"   "Peckham"

[[2091]]
[1] "Doc"      "Zorthian"

[[2092]]
[1] "Bea"    "Arthur"

[[2093]]
[1] "The"    "Roches"

[[2094]]
[1] "Bill"    "Russell"

[[2095]]
[1] "Ed"      "Herlihy"

[[2096]]
[1] "Chicago"

[[2097]]
[1] "Bob"   "Dylan"

[[2098]]
[1] "Fred"    "Tackett"

[[2099]]
[1] "Blondie"

[[2100]]
[1] "Bette"  "Midler"

[[2101]]
[1] "Will" "Lee" 

[[2102]]
[1] "Maureen"   "Stapleton"

[[2103]]
[1] "The"     "Section"

[[2104]]
[1] "Russ"   "Kunkel"

[[2105]]
[1] "Milton" "Berle" 

[[2106]]
[1] "Craig"   "Nettles"

[[2107]]
[1] "Ornette" "Coleman"

[[2108]]
[1] "Prime" "Time" 

[[2109]]
[1] "Buddy" "Freed"

[[2110]]
[1] "Marvin"  "Goldhar"

[[2111]]
[1] "Nelson" "Briles"

[[2112]]
[1] "Steve"     "Henderson"

[[2113]]
[1] "Ed"        "Kranepool"

[[2114]]
[1] "Margot" "Kidder"

[[2115]]
[1] "The"       "Chieftans"

[[2116]]
[1] "Gary"  "Busey"

[[2117]]
[1] "Eubie" "Blake"

[[2118]]
[1] "Gregory" "Hines"  

[[2119]]
[1] "Bob"      "Cranshaw"

[[2120]]
[1] "Bert"  "Jones"

[[2121]]
[1] "Paul"        "Butterfield"

[[2122]]
[1] "Rick"  "Danko"

[[2123]]
[1] "Kate"    "Jackson"

[[2124]]
[1] "Rick"   "Nelson"

[[2125]]
[1] "Judy"    "Collins"

[[2126]]
[1] "Cicely" "Tyson" 

[[2127]]
[1] "Talking" "Heads"  

[[2128]]
[1] "The"             "Doobie Brothers"

[[2129]]
[1] "Peter" "Tosh" 

[[2130]]
[1] "Bob"   "& Ray"

[[2131]]
[1] "Kate" "Bush"

[[2132]]
[1] "Walter"  "Matthau"

[[2133]]
[1] "George" "Coe"   

[[2134]]
[1] "Charlie" "Matthau"

[[2135]]
[1] "Bill"       "Kreutzmann"

[[2136]]
[1] "Van"      "Morrison"

[[2137]]
[1] "Frank" "Zappa"

[[2138]]
[1] "Devo"

[[2139]]
[1] "Sun" "Ra" 

[[2140]]
[1] "Richard"  "Dreyfuss"

[[2141]]
[1] "Jimmy"   "Buffett"

[[2142]]
[1] "Gary"     "Tigerman"

[[2143]]
[1] "Toni"  "Basil"

[[2144]]
[1] "Michael"  "Sarrazin"

[[2145]]
[1] "Keith"   "Jarrett"

[[2146]]
[1] "Gravity"

[[2147]]
[1] "Eugene" "Record"

[[2148]]
[1] "Christopher" "Lee"        

[[2149]]
[1] "Stacy" "Keach"

[[2150]]
[1] "Rick"    "Overton"

[[2151]]
[1] "Cheetah" "Chrome" 

[[2152]]
[1] "Jill"      "Clayburgh"

[[2153]]
[1] "Eddie" "Money"

[[2154]]
[1] "Stephen" "Bishop" 

[[2155]]
[1] "O.J."    "Simpson"

[[2156]]
[1] "Ashford"   "& Simpson"

[[2157]]
[1] "Robert" "Klein" 

[[2158]]
[1] "The"       "Dirt Band"

[[2159]]
[1] "Miskel"   "Spillman"

[[2160]]
[1] "Joe"         "Franken (I)"

[[2161]]
[1] "Phoebe"  "Franken"

[[2162]]
[1] "Mary"      "Kay Place"

[[2163]]
[1] "Connie"   "Crawford"

[[2164]]
[1] "David" "Lewis"

[[2165]]
[1] "Deb"   "Blair"

[[2166]]
[1] "Richard" "Kneip"  

[[2167]]
[1] "The"                 "Original Sloth Band"

[[2168]]
[1] "Ray"     "Charles"

[[2169]]
[1] "David"              "\"Fathead\" Newman"

[[2170]]
[1] "Hank"     "Crawford"

[[2171]]
[1] "Leroy"  "Cooper"

[[2172]]
[1] "Marcus"   "Belgrave"

[[2173]]
[1] "Phillip"  "Guilbeau"

[[2174]]
[1] "The"       "Raelettes"

[[2175]]
[1] "Franklyn" "Ajaye"   

[[2176]]
[1] "Charles" "Grodin" 

[[2177]]
[1] "The"         "Persuasions"

[[2178]]
[1] "Toots"      "Thielemans"

[[2179]]
[1] "Hugh"   "Hefner"

[[2180]]
[1] "Libby" "Titus"

[[2181]]
[1] "Taj"   "Mahal"

[[2182]]
[1] "Jackson" "Browne" 

[[2183]]
[1] "David"   "Lindley"

[[2184]]
[1] "Edie"   "Baskin"

[[2185]]
[1] "Kenny" "Vance"

[[2186]]
[1] "David"  "Lasley"

[[2187]]
[1] "Dahaud"      "Elias Shaar"

[[2188]]
[1] "Bella" "Abzug"

[[2189]]
[1] "Shelley" "Duvall" 

[[2190]]
[1] "Joan"        "Armatrading"

[[2191]]
[1] "Spalding" "Gray"    

[[2192]]
[1] "Jeanette" "Charles" 

[[2193]]
[1] "Alan"  "Price"

[[2194]]
[1] "Neil"  "Innes"

[[2195]]
[1] "Gary" "Weis"

[[2196]]
[1] "The"                "McGarrigle Sisters"

[[2197]]
[1] "Roslyn" "Kind"  

[[2198]]
[1] "Jacqueline" "Carlin"    

[[2199]]
[1] "Julian" "Bond"  

[[2200]]
[1] "Tom"   "Waits"

[[2201]]
[1] "Brick"

[[2202]]
[1] "Patti" "Smith"

[[2203]]
[1] "Jack"  "Burns"

[[2204]]
[1] "Broderick" "Crawford" 

[[2205]]
[1] "Dr."  "John"

[[2206]]
[1] "Levon" "Helm" 

[[2207]]
[1] "The"    "Meters"

[[2208]]
[1] "Sissy"  "Spacek"

[[2209]]
[1] "Richard" "Baskin" 

[[2210]]
[1] "Buster" "Holmes"

[[2211]]
[1] "Fran"      "Tarkenton"

[[2212]]
[1] "Leo"   "Sayer"

[[2213]]
[1] "Donny"                           "Harper & The Voices Of Tomorrow"

[[2214]]
[1] "Bob"    "Dryden"

[[2215]]
[1] "Ruth"   "Gordon"

[[2216]]
[1] "Chuck" "Berry"

[[2217]]
[1] "Ricky" "Jay"  

[[2218]]
[1] "George" "Benson"

[[2219]]
[1] "Andrew" "Duncan"

[[2220]]
[1] "Diana" "Nyad" 

[[2221]]
[1] "Jodie"  "Foster"

[[2222]]
[1] "Brian"  "Wilson"

[[2223]]
[1] "George"   "Harrison"

[[2224]]
[1] "Olivia"   "Harrison"

[[2225]]
[1] "Jim"     "Keltner"

[[2226]]
[1] "Ron"  "Wood"

[[2227]]
[1] "Ry"     "Cooder"

[[2228]]
[1] "Flaco"   "Jimenez"

[[2229]]
[1] "Bruce"  "McCall"

[[2230]]
[1] "The"  "Band"

[[2231]]
[1] "Kinky"    "Friedman"

[[2232]]
[1] "John"  "Prine"

[[2233]]
[1] "George"  "Schultz"

[[2234]]
[1] "Garry"   "Trudeau"

[[2235]]
[1] "Stuff"

[[2236]]
[1] "Norman" "Lear"  

[[2237]]
[1] "Caroll"   "O'Connor"

[[2238]]
[1] "Isabel"  "Sanford"

[[2239]]
[1] "Jean"      "Stapleton"

[[2240]]
[1] "Nancy"  "Walker"

[[2241]]
[1] "Richard" "Crenna" 

[[2242]]
[1] "Sherman"  "Helmsley"

[[2243]]
[1] "Boz"    "Scaggs"

[[2244]]
[1] "Kate" "Lear"

[[2245]]
[1] "Taylor" "Mead"  

[[2246]]
[1] "Kris"          "Kristofferson"

[[2247]]
[1] "Rita"     "Coolidge"

[[2248]]
[1] "Louise" "Lasser"

[[2249]]
[1] "The"                         "Preservation Hall Jazz Band"

[[2250]]
[1] "Wendell" "Craig"  

[[2251]]
[1] "Doris"  "Powell"

[[2252]]
[1] "Charlie" "Lowe"   

[[2253]]
[1] "Jonathan" "Dorn"    

[[2254]]
[1] "Harlan"  "Collins"

[[2255]]
[1] "Joyce"   "Everson"

[[2256]]
[1] "Gordon"    "Lightfoot"

[[2257]]
[1] "Dyan"   "Cannon"

[[2258]]
[1] "Leon"           "& Mary Russell"

[[2259]]
[1] "Carly" "Simon"

[[2260]]
[1] "Raquel" "Welch" 

[[2261]]
[1] "Phoebe" "Snow"  

[[2262]]
[1] "John"      "Sebastian"

[[2263]]
[1] "President"   "Gerald Ford"

[[2264]]
[1] "Ron"    "Nessen"

[[2265]]
[1] "Patti"       "Smith Group"

[[2266]]
[1] "Jerry" "Rubin"

[[2267]]
[1] "Anthony" "Perkins"

[[2268]]
[1] "Betty"  "Carter"

[[2269]]
[1] "Chuck"       "Scarborough"

[[2270]]
[1] "The"            "Singing Idlers"

[[2271]]
[1] "Desi"  "Arnaz"

[[2272]]
[1] "Desi"      "Arnaz Jr."

[[2273]]
[1] "Jenny"   "Shapiro"

[[2274]]
[1] "The"             "Shapiro Sisters"

[[2275]]
[1] "Marshall" "Efron"   

[[2276]]
[1] "Al"            "Alen Petersen"

[[2277]]
[1] "Peter" "Cook" 

[[2278]]
[1] "Neil"   "Sedaka"

[[2279]]
[1] "Abbie"   "Hoffman"

[[2280]]
[1] "Bill"    "Withers"

[[2281]]
[1] "Paula" "Kahn" 

[[2282]]
[1] "Albert" "Brooks"

[[2283]]
[1] "Clifford" "Einstein"

[[2284]]
[1] "James"     "L. Brooks"

[[2285]]
[1] "Julie" "Payne"

[[2286]]
[1] "Martha" "Reeves"

[[2287]]
[1] "The"        "Stylistics"

[[2288]]
[1] "Margaret" "Kuhn"    

[[2289]]
[1] "Richard" "Pryor"  

[[2290]]
[1] "Gil"         "Scott-Heron"

[[2291]]
[1] "Annazette" "Chase"    

[[2292]]
[1] "Kathrine" "McKee"   

[[2293]]
[1] "Thalmus"  "Rasulala"

[[2294]]
[1] "Shelley" "Pryor"  

[[2295]]
[1] "Abba"

[[2296]]
[1] "Loudon"         "Wainwright III"

[[2297]]
[1] "Esther"   "Phillips"

[[2298]]
[1] "Kay"  "Lenz"

[[2299]]
[1] "Rene"        "Auberjonois"

[[2300]]
[1] "The"     "Lockers"

[[2301]]
[1] "Mark"    "Hampton"

[[2302]]
[1] "Jesse"         "Dixon Singers"

[[2303]]
[1] "Connie"  "Hawkins"

[[2304]]
[1] "Billy"   "Preston"

[[2305]]
[1] "Janis" "Ian"  

[[2306]]
[1] "Valri"     "Bromfield"
  • combining multiple strings into one:
# getting a variable consisting of performer name and type
snl_1 %>%
  mutate(actor_name_type=str_c(aid,type,sep = "-"))
  • count the number of characters in a string:
# finding the snl cast member with the longest name
snl_1 %>%
  filter(str_detect(type,"cast")) %>%
  mutate(name_length=str_length(aid)) %>%
  arrange(desc(name_length))

Regular expressions

Sometimes patterns in strings are not so easily expressed (e.g., “cast” or “guest”). For example, we may want to search within strings for specific types of characters, such as punctuation, numbers, or lowercase characters. Or we may want to extract only part of a string, such as survey responses where the text response is preceded by “Response”.

For these more complicated tasks, we need regular expressions. Regular expressions are a tool for expressing patterns in strings, and are by no means inherent to R.

Regular expressions include match characters, alternates, anchors, and look arounds. See page 2 of the stringr cheatsheet for a full listing of these, but below I’ll demonstrate just a few.

For these, we’ll use the str_view() function, which, according to the documentation, is used to print the underlying representation of a string and to see how a pattern matches. The first argument to str_view() is the string we’re looking in, and the second argument is the pattern we want to match.

match characters

First, we’ll go over a couple match characters. Note that since “\” is a special character in R, we have to use double the amount of “\”s every time we want to use one.

str_view("!.><1","\\.") # match a single period
[1] │ !<.>><1
str_view("123 ABC 8910 XYZ","[:digit:]") # match any digits
[1] │ <1><2><3> ABC <8><9><1><0> XYZ
str_view("HELLO world","[:upper:]")
[1] │ <H><E><L><L><O> world

alternates

Alternates let us specify the criteria by which we want to match multiple patterns to.

str_view("abcxyz","a|z") # or
[1] │ <a>bcxy<z>
str_view("abc123","[^2]") # anything but 
[1] │ <a><b><c><1>2<3>

anchors

Anchors let us specify the start and end of the string we want to pattern match to.

str_view("quick brown fox","^quick b") # start of
[1] │ <quick b>rown fox
str_view("lazy dog","y dog$") # end of
[1] │ laz<y dog>

look arounds

Look arounds specify ways to match patterns based on what surrounds (or does not surround) your strings.

str_view("abc", "ab(?=c)") # ab followed by c
[1] │ <ab>c
str_view("abc","(?<=ab)c") # c preceded by ab
[1] │ ab<c>

quantifiers

We also sometimes need to use quantifiers to describe the number of certain patterns we’re looking for.

str_view("abccccaaacccaaaccc","c{2}") # exactly 1
[1] │ ab<cc><cc>aaa<cc>caaa<cc>c
str_view("abccccaaaccccaaaccc","c{1,3}") # between 1 & 3
[1] │ ab<ccc><c>aaa<ccc><c>aaa<ccc>
str_view("abccaacccbbccccccac","c{2,}") # 2 or more
[1] │ ab<cc>aa<ccc>bb<cccccc>ac

Dates

Dates are a specific type of data that refer to a particular point in time. There are technically multiple versions of this type of data, but we’ll be working with <date> type.

We’ll be using FedFundsRate and hotel_bookings data.

ffr <- here("posts","_data","FedFundsRate.csv") %>%
  read_csv()
Rows: 904 Columns: 10
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
dbl (10): Year, Month, Day, Federal Funds Target Rate, Federal Funds Upper T...

ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
hotels <- here("posts","_data","hotel_bookings.csv") %>%
  read_csv()
Rows: 119390 Columns: 32
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr  (13): hotel, arrival_date_month, meal, country, market_segment, distrib...
dbl  (18): is_canceled, lead_time, arrival_date_year, arrival_date_week_numb...
date  (1): reservation_status_date

ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.

We can make date type variables using the ymd() or mdy() functions (there are others, depending on how you arrange months, dates, and years):

ymd(20240103)
[1] "2024-01-03"
mdy(12122024)
[1] "2024-12-12"

We can also use the make_date() function, which we do here using the federal funds rate data:

ffr1 <- ffr %>%
  mutate(date=make_date(Year,Month,Day)) 
ffr1

We can even get today’s date, using the today() function.

today()
[1] "2024-01-03"

Below, we parse the arrival date into a string, using the str_c() function to combine the arrival_date_year, arrival_date_month, and arrival_date_day_of_month columns. Next, we make that date_tmp column into a date type column using the ymd() function.

hotels1 <- hotels %>%
  filter(!is_canceled) %>%
  mutate(date_tmp=str_c(arrival_date_year,
                                 arrival_date_month,
                                 arrival_date_day_of_month,
                             sep="/"),
         check_in_date=ymd(date_tmp)) %>%
  select(-date_tmp)

Finally, we can actually perform a mathematical operation, calculating the date of the guest’s reservation by subtracting the lead time (amount of days ahead of check-in the guest made the reservation) from the check in date.

hotels2 <- hotels1 %>%
  mutate(reservation_date=check_in_date-lead_time)
hotels2

Dates will become extremely relevant when we start visualizing flow relationships next week. We also didn’t discuss time type data, which are a more advanced topic.

Conclusion

Strings and dates are ubiquitous in data science. You need to know how to work with them, though using cheatsheets (like the stringr one) is okay!